- Add device ID and IP-based rate limiting to prevent abuse - Refactor UI components for better header menus and settings - Update privacy popup with detailed data usage info - Improve PDF handling and caching to prevent react-pdf warnings - Update README with new Docker instructions and environment variables
20 lines
975 B
Bash
20 lines
975 B
Bash
# Determins the environment mode, `production` limits many features
|
|
NEXT_PUBLIC_NODE_ENV=development # Not availble in Docker containers (due to being build-time only)
|
|
|
|
# Local / OpenAI TTS API Configuration (default)
|
|
# Suggest using https://github.com/remsky/Kokoro-FastAPI
|
|
API_BASE=http://localhost:8880/v1
|
|
API_KEY=api_key_optional
|
|
|
|
# Path to your local whisper.cpp CLI binary for STT timestamp generation
|
|
WHISPER_CPP_BIN=/whisper.cpp/build/bin/whisper-cli
|
|
|
|
# Auth (recommended for contributors and public instances)
|
|
# (Optional) Auth is only enabled when **both** BETTER_AUTH_SECRET and BETTER_AUTH_URL are set
|
|
BETTER_AUTH_URL=http://localhost:3003 # Your externally facing URL for this app
|
|
BETTER_AUTH_SECRET=some_random_secret_key # Generate with `openssl rand -base64 32`
|
|
# (Optional) Backend DB used only when authentication is enabled, defaults to SQLite when not set
|
|
POSTGRES_URL=
|
|
# (Optional) Sign in w/ GitHub Configuration
|
|
GITHUB_CLIENT_ID=
|
|
GITHUB_CLIENT_SECRET=
|