From f3adee261c59f6f4ec00a30f8282212beaced7e2 Mon Sep 17 00:00:00 2001 From: James Polley Date: Thu, 19 Apr 2018 07:36:44 +1000 Subject: [PATCH] Don't populate inventory yet We'll turn this back on once we're ready to start testing inventory for LCA2019 --- docker/deploy_with_sqlite.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/deploy_with_sqlite.sh b/docker/deploy_with_sqlite.sh index 0b4dce8d..c019a83d 100755 --- a/docker/deploy_with_sqlite.sh +++ b/docker/deploy_with_sqlite.sh @@ -1,8 +1,8 @@ #!/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