Skip to content
Snippets Groups Projects
entrypoint.dev.sh 400 B
Newer Older
  • Learn to ignore specific revisions
  • Max Pearl's avatar
    Max Pearl committed
    #!/bin/sh
    
    
    #npm install --quiet
    
    npm run build
    
    
    #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 "$@"