Files

11 lines
293 B
Python
Raw Permalink Normal View History

2026-06-04 23:12:34 +08:00
"""启动脚本"""
import os
from app import create_app
# 创建应用
app = create_app(os.environ.get('FLASK_ENV', 'development'))
if __name__ == '__main__':
# 从环境变量获取端口,默认16012
port = int(os.environ.get('PORT', 16013))
2026-06-04 23:12:34 +08:00
app.run(host='0.0.0.0', port=port)