roundabout,
created on Thursday, 25 April 2024, 11:46:53 (1714045613),
received on Wednesday, 31 July 2024, 06:54:46 (1722408886)
Author identity: vlad <vlad.muntoiu@gmail.com>
f6be39cbad519bdb25d756f3a6942c9173cbb3d6
app.py
@@ -162,6 +162,12 @@ def dismiss_banner():
response.set_cookie("cookie-banner", "1") return response @app.route("/help/") def help_redirect(): return flask.redirect(config.help_url, code=302) @app.route("/settings/", methods=["GET", "POST"]) def settings(): if not flask.session.get("username"):
config.py
@@ -4,6 +4,7 @@ from dotenv import load_dotenv
load_dotenv("secrets.env") site_name: str = "roundabout-host.com" help_url: str = "https://roundabout-host.com/"DB_PASSWORD: str = os.environ.get("DB_PASSWORD") DB_URI: str = f"postgresql://root:{DB_PASSWORD}@localhost/roundabout"