Skip to content

Instantly share code, notes, and snippets.

@dnfehren
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save dnfehren/8809238 to your computer and use it in GitHub Desktop.

Select an option

Save dnfehren/8809238 to your computer and use it in GitHub Desktop.
/systeml_project
/.git
.gitignore
Procfile
/requirements
base.txt
requirements.txt
/systeml
manage.py
/forecast
models.py
views.py
urls.py
/inventory
models.py
views.py
urls.py
/systeml
/settings
base.py
models.py
views.py
settings.py
urls.py
wsgi.py
Procfile contents...
web: gunicorn systeml.systeml.wsgi
wsgi.py contents...
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "systeml.systeml.settings.base")
from django.core.wsgi import get_wsgi_application
from dj_static import Cling
application = Cling(get_wsgi_application())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment