-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
32 lines (25 loc) · 821 Bytes
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
PORT=5000
NODE_ENV=development
VERSION=
ENABLE_EMAIL=false
CORS_ALLOW=http://localhost,http://localhost:3000;https://localhost:5000;http://app.local
DATABASE_URL="postgresql://postgres:secret@localhost:5432/postgres?schema=public"
JWT_SECRET=jwt_secret_key
JWT_ISSUER=api.localhost
JWT_AUDIENCE=api.localhost
JWT_MAX_AGE=900
JWT_REFESH_SECRET=jwt_refresh_secret_key
JWT_REFRESH_MAX_AGE=604800
JWT_RESET_SECRET=jwt_reset_secret_key
JWT_RESET_MAX_AGE=300
CSRF_COOKIE_PREFIX=nodetscookie
CSRF_COOKIE_MAXAGE=900
MAILGUN_API_URL=https://api.mailgun.net/v3
MAILGUN_SECRET_KEY=
MAILGUN_DOMAIN=
EMAIL_FROM=noreply
EMAIL_SUBJECT_RESET="Reset Your Password"
EMAIL_SUBJECT_CONFIRM="Confirm Account"
EMAIL_URL_RESET_PASSWORD=http://localhost:3000/auth/reset
EMAIL_URL_CONFIRM_ACCOUNT=http://localhost:3000/auth/confirm
COMMIT=