28 lines
974 B
Bash
28 lines
974 B
Bash
# Local development
|
|
DATABASE_URL="mysql://USER:PASSWORD@127.0.0.1:3306/chocomae"
|
|
AUTH_SECRET="replace-with-local-secret"
|
|
NEXTAUTH_SECRET="replace-with-local-secret"
|
|
AUTH_URL="http://localhost:3000"
|
|
NEXTAUTH_URL="http://localhost:3000"
|
|
# Logging: APP_ENV=local|stage|production / LOG_LEVEL=debug|info|warn|error
|
|
APP_ENV=local
|
|
LOG_LEVEL=debug
|
|
|
|
# Production example (.env.production)
|
|
# DATABASE_URL="mysql://USER:PASSWORD@AWS_EC2_HOST:3306/chocomae"
|
|
# AUTH_SECRET="replace-with-production-secret"
|
|
# NEXTAUTH_SECRET="replace-with-production-secret"
|
|
# AUTH_URL="https://NAS_HOST_OR_DOMAIN"
|
|
# NEXTAUTH_URL="https://NAS_HOST_OR_DOMAIN"
|
|
# APP_ENV=production
|
|
# LOG_LEVEL=info
|
|
|
|
# Stage example (.env.stage)
|
|
# DATABASE_URL="mysql://USER:PASSWORD@STAGE_DB_HOST:3306/chocomae"
|
|
# AUTH_SECRET="replace-with-stage-secret"
|
|
# NEXTAUTH_SECRET="replace-with-stage-secret"
|
|
# AUTH_URL="https://STAGE_HOST_OR_DOMAIN"
|
|
# NEXTAUTH_URL="https://STAGE_HOST_OR_DOMAIN"
|
|
# APP_ENV=stage
|
|
# LOG_LEVEL=debug
|