31 lines
650 B
Bash
31 lines
650 B
Bash
# API
|
|
PORT=4000
|
|
NODE_ENV=development
|
|
INGEST_API_KEY=change-me-please
|
|
CORS_ORIGIN=http://localhost:3000,http://localhost:3001
|
|
|
|
# Postgres (Phase 1)
|
|
DATABASE_URL=postgres://kerbal:kerbal@localhost:5432/kerbal_rt
|
|
|
|
# Redis (Phase 1)
|
|
REDIS_URL=redis://localhost:6379
|
|
|
|
# MinIO / S3 (Phase 1)
|
|
S3_ENDPOINT=http://localhost:9000
|
|
S3_REGION=us-east-1
|
|
S3_BUCKET=kerbal-rt-media
|
|
S3_ACCESS_KEY=kerbal
|
|
S3_SECRET_KEY=kerbal-secret-change-me
|
|
|
|
# Hub
|
|
NEXT_PUBLIC_API_URL=http://localhost:4000
|
|
NEXT_PUBLIC_MAP_URL=http://localhost:3001
|
|
|
|
# Live map
|
|
VITE_API_URL=http://localhost:4000
|
|
|
|
# Twitch / YouTube (Phase 3)
|
|
TWITCH_CLIENT_ID=
|
|
TWITCH_CLIENT_SECRET=
|
|
YOUTUBE_API_KEY=
|