Remove Stripe/billing/pricing/marketing, simplify schema and entitlements for unlimited self-host use, and keep auth, encode, and YouTube upload.
20 lines
887 B
Bash
20 lines
887 B
Bash
# Songs2VID OSS is always self-hosted and has no billing configuration.
|
|
DATABASE_URL="postgresql://songs2vid:songs2vid@localhost:5433/songs2vid"
|
|
REDIS_URL="redis://localhost:6380"
|
|
NEXTAUTH_URL="http://localhost:3000"
|
|
NEXTAUTH_SECRET="replace-with-a-long-random-secret"
|
|
# Optional; falls back to NEXTAUTH_SECRET.
|
|
# TOKEN_ENCRYPTION_KEY="replace-with-another-long-random-secret"
|
|
|
|
GOOGLE_CLIENT_ID="your-google-client-id.apps.googleusercontent.com"
|
|
GOOGLE_CLIENT_SECRET="your-google-client-secret"
|
|
UPLOAD_DIR="./uploads"
|
|
|
|
NEXT_PUBLIC_DOCS_URL="https://docs.songs2vid.com"
|
|
NEXT_PUBLIC_GITEA_ISSUES_URL="https://git.atakanozban.com/Songs2VID/songs2vid/issues"
|
|
NEXT_PUBLIC_GITEA_URL="https://git.atakanozban.com/Songs2VID"
|
|
NEXT_PUBLIC_DOCKER_HUB_URL="https://hub.docker.com/r/atakanozban/songs2vid"
|
|
|
|
# Optional: override the bundled ffmpeg-static binary.
|
|
# FFMPEG_PATH="C:/path/to/ffmpeg.exe"
|