Interbend/run.py
MrEisbear 69ffcee98f refactor: Restructure project into a scalable package layout
This commit undertakes a major architectural refactoring to improve project organization, scalability, and maintainability
2025-06-14 22:59:49 -05:00

10 lines
No EOL
211 B
Python

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)