24 lines
566 B
Bash
24 lines
566 B
Bash
# dumpsterChat Environment Configuration
|
|
# Copy this file to .env and fill in your values.
|
|
|
|
# Server
|
|
DUMPSTER_HOST=dumpster.dustin.coffee
|
|
DUMPSTER_SECRET=generate-a-random-secret-here
|
|
|
|
# Database
|
|
POSTGRES_USER=dumpster
|
|
POSTGRES_PASSWORD=generate-a-random-password-here
|
|
POSTGRES_DB=dumpster
|
|
|
|
# MinIO (optional — omit for local filesystem)
|
|
MINIO_ENDPOINT=
|
|
MINIO_ACCESS_KEY=
|
|
MINIO_SECRET_KEY=
|
|
|
|
# LiveKit (WebRTC / voice)
|
|
LIVEKIT_API_KEY=generate-a-random-key-here
|
|
LIVEKIT_API_SECRET=generate-a-random-secret-here
|
|
|
|
# Giphy (optional — for GIF search)
|
|
GIPHY_API_KEY=
|