spacepaste
new
Paste details
reply
|
raw
cat run.py
#!/usr/bin/env python
from app import create_app
app = create_app('config')
if __name__ == '__main__':
app.run(host=app.config['HOST'],
port=app.config['PORT'],
debug=app.config['DEBUG'])