Spaces:
Running
Running
File size: 364 Bytes
c30b4ba f6ecf91 c30b4ba 545b109 c30b4ba 7552392 c30b4ba 7552392 | 1 2 3 4 5 6 7 8 9 10 11 12 | from app import create_app
from flask import Flask, jsonify
from flask_cors import CORS
import os
app = create_app()
CORS(app, resources={r"/*": {"origins": "https://recipe-rover-fun.vercel.app"}})
# Remove debug mode and only run if directly executed
if __name__ == '__main__':
port = int(os.environ.get('PORT', 7860))
app.run(host='0.0.0.0', port=port) |