jupiter-faq-bot / run.py
thecoderhere's picture
Update run.py
bdce4c6 verified
raw
history blame contribute delete
252 Bytes
# run.py
import os
from app import create_app
if __name__ == '__main__':
app = create_app()
port = int(os.environ.get('PORT', 7860))
print(f"Starting Flask application on port {port}...")
app.run(host='0.0.0.0', port=port, debug=False)