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:
parent
e8c84ba809
commit
69ffcee98f
6 changed files with 129 additions and 87 deletions
10
run.py
Normal file
10
run.py
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue