Markdown cheat sheet and full-width edit mode since 2.0.0. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
19 lines
605 B
Plaintext
19 lines
605 B
Plaintext
# Kopiere diese Datei nach ".env" und trage deine Werte ein.
|
|
|
|
# Geheimer Schlüssel für Session-Cookies (beliebiger zufälliger String).
|
|
# Erzeugen z.B. mit: python3 -c "import secrets; print(secrets.token_hex(32))"
|
|
SECRET_KEY=change-me-please-set-a-random-secret
|
|
|
|
# OpenAI API-Key (https://platform.openai.com/api-keys)
|
|
OPENAI_API_KEY=
|
|
|
|
# Modelle (Standardwerte sind günstig & gut)
|
|
OPENAI_MODEL=gpt-4o-mini
|
|
EMBEDDING_MODEL=text-embedding-3-small
|
|
|
|
# Datenbank (Standard: lokale SQLite-Datei)
|
|
DATABASE_URL=sqlite:///./linkvault.db
|
|
|
|
# Versionsangabe für die Fußzeile (Standard: 2.1.0)
|
|
APP_VERSION=2.1.0
|