Changeset - f3adee261c59
[Not reviewed]
0 1 0
James Polley - 6 years ago 2018-04-18 21:36:44
jp@jamezpolley.com
Don't populate inventory yet

We'll turn this back on once we're ready to start testing inventory for LCA2019
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
docker/deploy_with_sqlite.sh
Show inline comments
 
#!/bin/bash
 

	
 
/usr/local/bin/python /app/symposion_app/manage.py migrate
 
/usr/local/bin/python /app/symposion_app/manage.py loaddata /app/symposion_app/fixtures/conference.json /app/symposion_app/fixtures/proposal_base.json /app/symposion_app/fixtures/sites.json /app/symposion_app/fixtures/sitetree.json
 
/usr/local/bin/python /app/symposion_app/manage.py populate_inventory
 
/usr/local/bin/python /app/symposion_app/manage.py loaddata /app/symposion_app/fixtures/{conference,proposal_base,sites,sitetree}.json
 
#/usr/local/bin/python /app/symposion_app/manage.py populate_inventory
 
if [ $DATABASE_URL == "sqlite:////tmp/symposion.sqlite" ]; then
 
    /usr/local/bin/python /app/symposion_app/manage.py loaddata /app/symposion_app/fixtures/admin_users.json
 
fi
0 comments (0 inline, 0 general)