Strip Songs2VID to a payment-free self-hosted OSS core.

Remove Stripe/billing/pricing/marketing, simplify schema and entitlements for unlimited self-host use, and keep auth, encode, and YouTube upload.
This commit is contained in:
Atakan Doğan Özban
2026-08-03 06:52:00 +02:00
parent 506d56fa92
commit 6476bb42a4
108 changed files with 397 additions and 8061 deletions
+6 -9
View File
@@ -3,13 +3,13 @@ services:
image: postgres:16-alpine
restart: unless-stopped
environment:
POSTGRES_USER: s2yt
POSTGRES_PASSWORD: s2yt
POSTGRES_DB: s2yt
POSTGRES_USER: songs2vid
POSTGRES_PASSWORD: songs2vid
POSTGRES_DB: songs2vid
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U s2yt -d s2yt"]
test: ["CMD-SHELL", "pg_isready -U songs2vid -d songs2vid"]
interval: 5s
timeout: 5s
retries: 10
@@ -28,15 +28,13 @@ services:
web:
build: .
# Multi-arch Hub release: ./scripts/release-cloud.sh --push
restart: unless-stopped
ports:
- "${S2VID_PORT:-3000}:3000"
env_file:
- .env
environment:
S2VID_EDITION: selfhosted
DATABASE_URL: postgresql://s2yt:s2yt@postgres:5432/s2yt
DATABASE_URL: postgresql://songs2vid:songs2vid@postgres:5432/songs2vid
REDIS_URL: redis://redis:6379
UPLOAD_DIR: /app/uploads
NEXTAUTH_URL: ${NEXTAUTH_URL:-http://localhost:3000}
@@ -56,8 +54,7 @@ services:
env_file:
- .env
environment:
S2VID_EDITION: selfhosted
DATABASE_URL: postgresql://s2yt:s2yt@postgres:5432/s2yt
DATABASE_URL: postgresql://songs2vid:songs2vid@postgres:5432/songs2vid
REDIS_URL: redis://redis:6379
UPLOAD_DIR: /app/uploads
volumes: