Skip to content

Commit

Permalink
Merge pull request #11 from rharkor/dev
Browse files Browse the repository at this point in the history
refactor: env
  • Loading branch information
rharkor authored Feb 20, 2024
2 parents 97d53c3 + dd7e2bc commit 02cab06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
NEXT_TELEMETRY_DISABLED=1
ENV=production
NEXT_PUBLIC_BASE_URL=http://yourdomain:3000
NEXT_PUBLIC_BASE_URL=https://yourdomain
DATABASE_PRISMA_URL="postgresql://postgres:postgres@db:5432/postgres?schema=public"
DATABASE_URL_NON_POOLING="postgresql://postgres:postgres@db:5432/postgres?schema=public"
DATABASE_USER=postgres
DATABASE_PASS=postgres
DATABASE_NAME=postgres
PASSWORD_HASHER_SECRET=secret
NEXTAUTH_URL=http://yourdomain:3000
NEXTAUTH_URL=https://yourdomain
NEXTAUTH_SECRET=secret
AUTH_ADMIN_EMAIL=test@mail.com
AUTH_ADMIN_PASSWORD=Azerty123!
REDIS_HOST=redis
REDIS_PASSWORD=secret
REDIS_PORT=6379
REDIS_USE_TLS=false
NEXT_PUBLIC_WS_URL=ws://wss:3001
NEXT_PUBLIC_WS_URL=wss://yourdomain

0 comments on commit 02cab06

Please sign in to comment.