chore: add run.py entrypoint, update .gitignore and README

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
This commit is contained in:
cottongin
2026-04-06 18:39:49 -04:00
parent 45e94d68da
commit c7c6cd979b
4 changed files with 14 additions and 6 deletions

4
run.py Normal file
View File

@@ -0,0 +1,4 @@
from app import create_app
app = create_app()
app.run(host="127.0.0.1", port=5005, debug=False)