Organize/.env.example

19 lines
715 B
Plaintext

# Copy this file to .env and fill in real values before running the app.
# Postgres connection string used by Prisma. Host/port/db name must match
# the POSTGRES_* values below when running via docker-compose.
DATABASE_URL="postgresql://organize:organize@localhost:5432/organize?schema=public"
# Auth.js session encryption secret. Generate with:
# openssl rand -base64 32
AUTH_SECRET="replace-with-a-generated-secret"
# Consumed by the "db" service in docker-compose.yml.
POSTGRES_USER=organize
POSTGRES_PASSWORD=organize
POSTGRES_DB=organize
# Host port the "app" service is published on (e.g. http://localhost:3000).
# The container always listens on 3000 internally regardless of this value.
APP_PORT=3000