-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path__init__.py
33 lines (27 loc) · 825 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# app/__init__.py
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
from config import Config
from app.database import db
from sqlalchemy import create_engine
from app.routes import report_bp
migrate = Migrate()
def create_app():
app = Flask(__name__)
app.config.from_object(Config)
# Set up the database connection
engine = create_engine(app.config['SQLALCHEMY_DATABASE_URI'], connect_args={
'foreign_keys': 'ON',
'journal_mode': 'WAL',
'page_size': 4096,
'cache_size': 1000000,
'temp_store': 'MEMORY',
'mmap_size': 30000000000,
'max_page_count': 2147483646
})
db.init_app(app)
migrate.init_app(app, db)
# Register the blueprint
app.register_blueprint(report_bp)
return app