smash/run.py
2016-12-02 00:57:27 +00:00

8 lines
229 B
Python

import os
from smash import app, conf
if __name__=='__main__':
if 'HEROKU' in conf.config and conf.config['HEROKU']==1:
app.run(host= '0.0.0.0', port=os.environ['PORT'])
else:
app.run(debug=True)