9 lines
229 B
Bash
9 lines
229 B
Bash
#!/bin/bash
|
|
|
|
# Stop if an error is encountered.
|
|
set -e
|
|
|
|
python manage.py migrate
|
|
python manage.py loaddata gestion sites articles
|
|
python manage.py loaddevdata
|
|
python manage.py syncmails gestioncof/management/data/custommail.json
|