Skip to content
Snippets Groups Projects
entrypoint.dev.sh 647 B
Newer Older
  • Learn to ignore specific revisions
  • Max Pearl's avatar
    Max Pearl committed
    #!/bin/sh
    
    if [ "$DATABASE" = "postgres" ]
    then
        echo "Waiting for postgres..."
    
        while ! nc -z $SQL_HOST $SQL_PORT; do
          sleep 0.1
        done
    
        echo "PostgreSQL started"
    fi
    
    npm install
    gulp deploy
    python manage.py createcachetable
    
    python manage.py collectstatic --noinput --verbosity=0
    
    Max Pearl's avatar
    Max Pearl committed
    python manage.py migrate
    
    python manage.py createsuperuser --email=dev@hypha.test --no-input
    
    Max Pearl's avatar
    Max Pearl committed
    python manage.py wagtailsiteupdate hypha.test apply.hypha.test 80
    
    python manage.py runserver 0.0.0.0:8080
    # gunicorn opentech.wsgi:application --reload --daemon --workers 3 --bind 0.0.0.0::8080 --env DJANGO_SETTINGS_MODULE=opentech.settings.dev
    
    Max Pearl's avatar
    Max Pearl committed
    
    exec "$@"