20 lines
662 B
Python
20 lines
662 B
Python
from flask import Flask
|
|
from routes import org_bp, user_bp, file_bp
|
|
from database import db_connection
|
|
from models import Organization, User, File
|
|
|
|
app = Flask(__name__)
|
|
app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite:///database.db"
|
|
app.config["SQLALCHEMY_TRACK_MODIFICATIONS"] = True
|
|
app.config["SQLALCHEMY_AUTOCOMMIT"] = False
|
|
app.config["SQLALCHEMY_AUTOFLUSH"] = False
|
|
db_connection.init_app(app)
|
|
with app.app_context():
|
|
db_connection.create_all()
|
|
|
|
app.register_blueprint(org_bp, url_prefix="/org")
|
|
app.register_blueprint(user_bp, url_prefix="/user")
|
|
app.register_blueprint(file_bp, url_prefix="/file")
|
|
|
|
if __name__ == "__main__":
|
|
app.run(debug=True) |