Files
linkvault/.env.example
Erik Thiele 097125e7db Document editing, sorting, date display, and footer
The feature list was missing the recently added link editing, AI
re-description, sorting, and added-date display. Also document
APP_VERSION, which controls the version shown in the footer.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-19 22:06:40 +02:00

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: 1.0.0)
APP_VERSION=1.0.0