contentmatcher/app.py

40 lines
1007 B
Python
Raw Normal View History

2022-04-25 00:32:17 +02:00
import os
2022-05-15 22:12:18 +02:00
from auth import bp
2022-04-25 00:32:17 +02:00
from flask import Flask
def create_app(test_config=None):
# create and configure the app
app = Flask(__name__, instance_relative_config=True)
app.config.from_mapping(
SECRET_KEY='dev',
DATABASE=os.path.join(app.instance_path, 'flaskr.sqlite'),
2022-05-13 18:23:15 +02:00
) # = kaj naj tu piše?
2022-04-25 00:32:17 +02:00
if test_config is None:
# load the instance config, if it exists, when not testing
app.config.from_pyfile('config.py', silent=True)
else:
# load the test config if passed in
app.config.from_mapping(test_config)
# ensure the instance folder exists
try:
os.makedirs(app.instance_path)
except OSError:
pass
# a simple page that says hello
2022-05-17 21:27:51 +02:00
@app.route('/index')
@app.route('/')
def index():
2022-04-25 00:32:17 +02:00
return 'Hello, Woooorld!'
2022-05-15 22:12:18 +02:00
app.register_blueprint(bp)
2022-05-13 18:23:15 +02:00
return app
2022-05-15 22:12:18 +02:00
app = create_app()
app.run(debug=True, host="0.0.0.0")