vishalsh13's picture
commit as its working on local
e4dba65
raw
history blame contribute delete
260 Bytes
from app import create_app
if __name__ == "__main__":
obj_app = create_app()
# Host 0.0.0.0 so it's accessible in Docker or on local network
# Port 7860 is an example; you can choose another
obj_app.run(host='0.0.0.0', port=7860, debug=False)