Use the anarchy install medium:
- encrypted luks device
- anarchy-advanced
- lts kernel with base devel
- clean desktop: kde
- other configs as needed (Swap, UEFI, bluetooth, trackpad...) but mostly just install everything
[tool.poetry] | |
name = "temp" | |
version = "0.1.0" | |
description = "" | |
authors = ["me"] | |
readme = "README.md" | |
[tool.poetry.dependencies] | |
python = "^3.10" |
from flask import Flask | |
from uuid import uuid4 | |
app = Flask(__name__) | |
app.config["SECRET_KEY"] = str(uuid4()) | |
IDP_CONFIG = { | |
"well_known_url": "Identity Provider wellknown url: https://{TENANT}.auth0.com/.well-known/openid-configuration", |