# ─── Server ────────────────────────────────────────────
SECRET_KEY='SECRET_KEY'
DEBUG=True
PORT=8000
HOST="127.0.0.1"
JIT=False
WORKERS="1"

# ─── Application URL ──────────────────────────────────
# English: Production URL for sitemaps, robots.txt, and canonical links.
#          Leave empty in development — the framework uses http://HOST:PORT automatically.
# Español: URL de producción para sitemaps, robots.txt y links canónicos.
#          Dejar vacío en desarrollo — el framework usa http://HOST:PORT automáticamente.
APP_URL=""

# ─── Project Metadata ─────────────────────────────────
TITLE_PROJECT='Lila Framework'
VERSION_PROJECT='1'
DESCRIPTION_PROJECT='Description'
LANG_DEFAULT='en'

# ─── SEO Defaults ─────────────────────────────────────
DESCRIPTION_DEFAULT="A Python web framework"
KEYWORDS_DEFAULT="Python, web, framework"
AUTHOR_DEFAULT="Seip"