__main__.py 553 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
# -*- encoding: utf-8 -*-
# -----------------------------------------------------------------------------
# @File Name  : __main__.py
# @Time       : 2020/11/18 下午3:17
# @Author     : X. Peng
# @Email      : acepengxiong@163.com
# @Software   : PyCharm
# -----------------------------------------------------------------------------
from app.api.app import app
pengxiong@wealthgrow.cn's avatar
pengxiong@wealthgrow.cn committed
10
from app.api.engine import env
11 12

if __name__ == '__main__':
pengxiong@wealthgrow.cn's avatar
pengxiong@wealthgrow.cn committed
13 14 15 16
    if env == 'dev':
        app.run('0.0.0.0', port=80, debug=True)
    else:
        app.run('0.0.0.0', port=80, debug=False)
17