Files @ 44cdd088befa
Branch filter:

Location: symposion_app/docker/deploy_with_sqlite.sh

James Polley
git subrepo clone git@gitlab.com:LCA2018/registrasion-desk.git vendor/regidesk

subrepo:
subdir: "vendor/regidesk"
merged: "a8096d0"
upstream:
origin: "git@gitlab.com:LCA2018/registrasion-desk.git"
branch: "master"
commit: "a8096d0"
git-subrepo:
version: "0.3.1"
origin: "???"
commit: "???"
#!/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
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

exec /usr/local/bin/uwsgi --http-socket 0.0.0.0:8000 --wsgi-file pinaxcon/wsgi.py