-
Notifications
You must be signed in to change notification settings - Fork 19
/
justfile
44 lines (30 loc) · 1.05 KB
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Ejecutar comprobaciones del proyecto Django + Flake8 + Vulture
check:
python manage.py check
flake8 --count **/*.py
vulture .
# Borrar ficheros temporales y espurios
clean:
find . -type f -name "*.pyc" -delete
find . -type d -name "__pycache__" -exec rm -r "{}" \;
find . -type d -name ".sass-cache" -exec rm -r "{}" \;
# Ejecuta las migraciones pendientes"
migrate:
python manage.py migrate
# Ejecutar el servidor en modo producción
run: check static
python manage.py runserver
# Ejecutar el servidor en modo desarrollo
rundev: static
DEBUG=yes python manage.py runserver_plus
# Abre una shell python con el entorno de Django cargado
shell:
python manage.py shell_plus
# Actualiza contenidos estáticos
static:
python manage.py collectstatic --no-input
#sass --sourcemap=none bulma/custom.scss:commons/static/commons/vendor.min.css
#sass --sourcemap=none about/static/about/css/main.scss:about/static/about/custom.min.css
# [Re]crear el fichero ctags
tags:
ctags -R [email protected] .