40 lines
808 B
Python
40 lines
808 B
Python
"""
|
|
MiroFish Backend 启动入口
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
|
|
# 添加项目根目录到路径
|
|
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
from app import create_app
|
|
from app.config import Config
|
|
|
|
|
|
def main():
|
|
"""主函数"""
|
|
# 验证配置
|
|
errors = Config.validate()
|
|
if errors:
|
|
print("配置错误:")
|
|
for err in errors:
|
|
print(f" - {err}")
|
|
print("\n请检查 .env 文件中的配置")
|
|
sys.exit(1)
|
|
|
|
# 创建应用
|
|
app = create_app()
|
|
|
|
# 获取运行配置
|
|
host = os.environ.get('FLASK_HOST', '0.0.0.0')
|
|
port = int(os.environ.get('FLASK_PORT', 5001))
|
|
debug = Config.DEBUG
|
|
|
|
# 启动服务
|
|
app.run(host=host, port=port, debug=debug, threaded=True)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|