Spaces:
Running
Running
File size: 309 Bytes
0f10134 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# run.py
import sys
import os
# 将项目根目录添加到Python路径
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
from app.web.web_server import app
if __name__ == '__main__':
port = int(os.environ.get('PORT', 7860))
app.run(host='0.0.0.0', port=port, debug=False)
|