-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (28 loc) 路 830 Bytes
/
Copy path.env.example
File metadata and controls
37 lines (28 loc) 路 830 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
37
PROJECT_NAME=starter-kit # please use kebab-case or snake_case, example : starter-kit or starter_kit
APP_ENV=development
APP_API_KEY=sandbox
DB_HOST="pgsql"
DB_PORT="5432"
DB_USER="user_db_dev"
DB_PASS="pass_db_dev"
DB_NAME="db-${PROJECT_NAME}"
MAIL_HOST=host.docker.internal
MAIL_PORT=1025
MAIL_USER=
MAIL_PASS=
MAIL_FROM_DEFAULT='"No Reply" <noreply@example.com>'
REDIS_URL='redis://redis:6379/0'
JWT_SECRET=123k34j3k423jk231jk231j2k31j2k3jj33j
JWT_SECRET_REFRESH=123234234234235234234443
JWT_EXP_AT=60*60*24*7
JWT_REFRESH_EXP_AT=60*60*24*30
GCS_DOMAIN_URL=http://domain.com
GCS_PROJECT_ID=app.io
GCS_BUCKET_NAME=app.appspot.com
GOOGLE_APPLICATION_CREDENTIALS=/app/dist/service-account.json
# DOCKER ENV
DB_EXPOSED_PORT=8610
APP_EXPOSED_PORT=8611
ADMINER_EXPOSED_PORT=8613
REDIS_EXPOSED_PORT=8612
SMTP_EXPOSED_PORT=8614