30 lines
1010 B
Bash
30 lines
1010 B
Bash
# Public URL where users open Neta. Production'da localhost dışında HTTPS kullanın.
|
||
NEXT_PUBLIC_SITE_URL=http://localhost:3000
|
||
|
||
# Canonical server-side app URL used by auth callbacks and trusted origin checks.
|
||
# Defaults to NEXT_PUBLIC_SITE_URL when empty.
|
||
APP_URL=
|
||
|
||
# Optional Better Auth base URL override. Defaults to APP_URL/NEXT_PUBLIC_SITE_URL.
|
||
BETTER_AUTH_URL=
|
||
|
||
# Required at production runtime. Generate with: openssl rand -base64 32
|
||
BETTER_AUTH_SECRET=
|
||
|
||
# Optional comma-separated extra trusted origins. Wildcards are rejected.
|
||
TRUSTED_ORIGINS=
|
||
|
||
# Persistent application data directory. In Docker this should be /app/data.
|
||
DATA_DIR=.data
|
||
|
||
# Optional explicit SQLite database path. Defaults to DATA_DIR/neta.db.
|
||
DATABASE_PATH=
|
||
|
||
# Optional local OpenAI-compatible Ollama endpoint and AI request timeout.
|
||
OLLAMA_BASE_URL=http://127.0.0.1:11434/v1
|
||
|
||
AI_REQUEST_TIMEOUT_MS=30000
|
||
|
||
# Optional SemVer floor advertised to future iOS/Android clients. Empty disables enforcement.
|
||
NETA_MINIMUM_MOBILE_VERSION=
|