contentmatcher/app.py

63 lines
1.7 KiB
Python
Raw Normal View History

2022-05-20 00:01:56 +02:00
from collections import UserList
2022-04-25 00:32:17 +02:00
import os
2022-05-20 00:01:56 +02:00
from auth import login_required, bp as auth_bp
from deck import deck, bp as deck_bp
from flask import Flask, render_template, session
2022-04-25 00:32:17 +02:00
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-20 00:01:56 +02:00
2022-05-17 21:27:51 +02:00
@app.route('/')
2022-05-20 00:01:56 +02:00
@login_required
2022-05-17 21:27:51 +02:00
def index():
2022-05-20 00:01:56 +02:00
return 'redirecting' # meče skoz nazaj na login TODO
@app.route('/deck', methods=["GET", "POST"])
#@login_required
def deck():
if 'user_id' in session:
user_id = session['user_id']
username = session['username']
return render_template("deck/index.html", username=username)
else:
return index()
@app.route('/logout')
def logout():
session.pop("user_id", None)
return index()
#app.register_blueprint(bp) # ??
app.register_blueprint(auth_bp)
app.register_blueprint(deck_bp)
app.add_url_rule('/', endpoint='index')
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")