refactor: Restructure project into a scalable package layout

This commit undertakes a major architectural refactoring to improve project organization, scalability, and maintainability
This commit is contained in:
MrEisbear 2025-06-14 22:59:49 -05:00
parent e8c84ba809
commit 69ffcee98f
6 changed files with 129 additions and 87 deletions

10
run.py Normal file
View file

@ -0,0 +1,10 @@
from interbend import create_app
from interbend.db import init_db
# Initialize the database (creates tables if they don't exist)
init_db()
app = create_app()
if __name__ == '__main__':
app.run(debug=True)