mirror of
https://github.com/Project-Redacted/Highscores-Server.git
synced 2025-05-23 20:04:53 +00:00
12 lines
266 B
Python
12 lines
266 B
Python
from flask import Flask
|
|
from server.extensions import db, migrate, cache
|
|
from server.views import blueprint
|
|
|
|
app = Flask(__name__)
|
|
app.config.from_pyfile('config.py')
|
|
|
|
db.init_app(app)
|
|
migrate.init_app(app, db)
|
|
cache.init_app(app)
|
|
|
|
app.register_blueprint(blueprint)
|