Moved the app entrypoint from app.py __main__ block to a dedicated run.py. Updated .gitignore to exclude editor, superpowers, and OS files. Made-with: Cursor
5 lines
97 B
Python
5 lines
97 B
Python
from app import create_app
|
|
|
|
app = create_app()
|
|
app.run(host="127.0.0.1", port=5005, debug=False)
|