fina/run.py
2025-12-26 00:52:56 +00:00

8 lines
182 B
Python

from app import create_app
import os
app = create_app()
if __name__ == '__main__':
port = int(os.environ.get('PORT', 5103))
app.run(host='0.0.0.0', port=port, debug=False)