Skip to content

Instantly share code, notes, and snippets.

@hephaestus9
Created March 22, 2015 15:00
Show Gist options
  • Save hephaestus9/6885676c80d57df11a63 to your computer and use it in GitHub Desktop.
Save hephaestus9/6885676c80d57df11a63 to your computer and use it in GitHub Desktop.
/var/www/Ironworks/ironworks.wsgi
#!/usr/bin/python
import sys
import logging
logging.basicConfig(stream=sys.stderr)
sys.path.insert(0,"/var/www/Ironworks/")
from Ironworks import app as application
application.secret_key = 'This is my secret - get your own'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment