login and dashboard pages
This commit is contained in:
10
py_app/app/__init__.py
Normal file
10
py_app/app/__init__.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from flask import Flask
|
||||
|
||||
def create_app():
|
||||
app = Flask(__name__)
|
||||
app.config['SECRET_KEY'] = 'Recticel a plecat Aquinos a falimentat Innofa a venit'
|
||||
|
||||
from .routes import bp
|
||||
app.register_blueprint(bp)
|
||||
|
||||
return app
|
||||
Reference in New Issue
Block a user