This commit undertakes a major architectural refactoring to improve project organization, scalability, and maintainability
10 lines
No EOL
211 B
Python
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) |