9482ab4416
Il faut lancer `syncmails` au setup de GestioCOF
8 lines
225 B
Bash
8 lines
225 B
Bash
#!/bin/bash
|
|
# Doit être lancé par bootstrap.sh
|
|
|
|
source ~/venv/bin/activate
|
|
python manage.py migrate
|
|
python manage.py syncmails
|
|
python manage.py loaddata users root bda gestion sites
|
|
python manage.py collectstatic --noinput
|