Skip to content
Snippets Groups Projects
entrypoint.dev.sh 398 B
Newer Older
Max Pearl's avatar
Max Pearl committed
#!/bin/sh

#npm install --quiet
Max Pearl's avatar
Max Pearl committed
gulp deploy

#pip3 install --quiet -r requirements-dev.txt
python3 manage.py createcachetable
python3 manage.py collectstatic --noinput --verbosity=0
python3 manage.py migrate
python3 manage.py wagtailsiteupdate hypha.test apply.hypha.test 8090
gunicorn hypha.wsgi:application --env DJANGO_SETTINGS_MODULE=hypha.settings.dev --reload  --bind 0.0.0.0:9001
Max Pearl's avatar
Max Pearl committed

exec "$@"