forked from jsperlong/apollo-server-express-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocess.yml.example
More file actions
37 lines (37 loc) · 1.07 KB
/
process.yml.example
File metadata and controls
37 lines (37 loc) · 1.07 KB
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
#PM2 Config
apps:
- script: dist/index.js
name: "skeleton"
instances: 1
env:
NODE_ENV: development
MONGO_URI: mongodb://skeleton:123@127.0.0.1:27017/skeleton
JWT_SECRET: djghhhhuuwiwuewieuwieuriwu
APP_NAME: SKELETON
APP_PORT: 8080
APP_API_URL: http://localhost:8080
APP_WEB_URL: http://skeleton.int
SMTP_HOST: smtp.gmail.com
SMTP_PORT: 465
SMTP_SECURE: true
SMTP_USER: ci.sys.virtual@gmail.com
SMTP_PASS:
LOG_EXPRESS_REQUEST: ON
LOG_GRAPHQL_ERRORS: ON
LOG_GRAPHQL_RESPONSE: OFF
env_production:
NODE_ENV: production
MONGO_URI: mongodb://skeleton:123@127.0.0.1:27017/skeleton
JWT_SECRET: djghhhhuuwiwuewieuwieuriwu
APP_NAME: SKELETON
APP_PORT: 8080
APP_API_URL: http://localhost:8080
APP_WEB_URL: http://localhost:80
SMTP_HOST: smtp.gmail.com
SMTP_PORT: 465
SMTP_SECURE: true
SMTP_USER: ci.sys.virtual@gmail.com
SMTP_PASS:
LOG_EXPRESS_REQUEST: ON
LOG_GRAPHQL_ERRORS: ON
LOG_GRAPHQL_RESPONSE: OFF