18b186929c
- Sites, surveys, events and petits cours demands/subjects are still loaded from fixtures - The users and their subscriptions to petits cours are loaded using the `loaddevdata` command - The sub command `loadbdadevdata` is called by `loaddevdata` and populates the database with BdA related stuff : - 2 tirages - Show places - Shows - subscriptions
8 lines
212 B
Bash
8 lines
212 B
Bash
#!/bin/bash
|
|
# Doit être lancé par bootstrap.sh
|
|
|
|
source ~/venv/bin/activate
|
|
python manage.py migrate
|
|
python manage.py loaddata gestion sites
|
|
python manage.py loaddevdata
|
|
python manage.py collectstatic --noinput
|