bootstrapping, adding assets

This commit is contained in:
Matthew Scragg 2013-09-26 08:51:15 -05:00
parent 7b39666270
commit 967815bda5
32 changed files with 13598 additions and 1 deletions

8
app.py Normal file
View file

@ -0,0 +1,8 @@
from gevent import monkey, pywsgi
monkey.patch_all()
import logging
from reimagine import app
if __name__ == '__main__':
app.logger.setLevel(logging.INFO)
pywsgi.WSGIServer(('', 9999), app).serve_forever()