typeset-blog/run.py

18 lines
308 B
Python
Raw Permalink Normal View History

2017-08-09 06:43:31 +00:00
# -*- encoding: utf-8 -*-
"""
Python Aplication Template
Licence: GPLv3
"""
import os
from app import app
#----------------------------------------
# launch
#----------------------------------------
if __name__ == "__main__":
port = int(os.environ.get("PORT", 5000))
app.run(host='0.0.0.0', port=port)