Skip to content
Snippets Groups Projects
Select Git revision
  • 7f1d272e92d14cf7225a3bb265e27b2c91762f60
  • main default protected
  • cf2025
  • cf2024
  • cf2023-euro
  • cf2023-offline
6 results

Dockerfile.development

Blame
  • run.sh 145 B
    #!/bin/bash
    
    # exit on error
    set -e
    
    # migrate database
    python manage.py migrate
    
    # start webserver
    exec gunicorn -c gunicorn.conf.py majak.wsgi