bootstrapping, adding assets
This commit is contained in:
parent
7b39666270
commit
967815bda5
32 changed files with 13598 additions and 1 deletions
8
app.py
Normal file
8
app.py
Normal 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()
|
Loading…
Add table
Add a link
Reference in a new issue