-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.production
More file actions
36 lines (31 loc) · 636 Bytes
/
.env.production
File metadata and controls
36 lines (31 loc) · 636 Bytes
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
33
34
35
36
# Server Settings
APP_NAME=Example
NODE_ENV=development
PORT=3000
APP_URL=http://localhost
FRONTEND_URL=http://localhost:5000
API_VERSION=v1
# JWT settings
SECRET_KEY="very-secret-key"
# Session secret key
SESSION_SECRET="very-secret-key"
# Database settings
DB_CONNECTION=psql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=example
DB_USERNAME=root
DB_PASSWORD=
# Mail settings
MAIL_MAILER=smtp
MAIL_HOST=127.0.0.1
MAIL_PORT=1025
MAIL_USERNAME=user
MAIL_PASSWORD=password
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="cliuno@example.com"
MAIL_FROM_NAME="${APP_NAME}"
# Redis settings
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379