-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (18 loc) · 797 Bytes
/
.env.example
File metadata and controls
23 lines (18 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# WARNING: This file may be outdated
# See ./src/env.ts for the up-to-date required environment variables
# PUBLIC_URL="" # set up this value when deploying on a domain (without trailing slash). default to http://localhost:PORT
# PORT="" # you can change the server port if you want. default to 3000
# TRUSTED_ORIGINS="" # comma-separated list of allowed origins. default to http://localhost:3000,3001,3002,5173,5174,5175
DB_HOST=""
DB_PORT="5432"
DB_USER=""
DB_PASS=""
DB_NAME="polinetwork_backend"
# you generate it with `openssl rand -hex 32` !!! MINIMUM LENGTH = 32 bytes !!!
ENCRYPTION_KEY=""
# you generate it with `openssl rand -hex 20`
BETTER_AUTH_SECRET=""
AZURE_TENANT_ID=""
AZURE_CLIENT_ID=""
AZURE_CLIENT_SECRET=""
AZURE_EMAIL_SENDER="noreply@polinetwork.org"