UNPKG
get-express-starter
Version:
latest (3.1.0)
3.1.0
3.0.0
2.1.2
2.1.1
2.0.1
1.1.1
1.1.0
1.0.0
0.1.0
Get production ready express boilerplate with a single command
get-express-starter
/
templates
/
express-postgres-prisma
/
ecosystem.config.json
19 lines
(18 loc)
•
302 B
JSON
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"apps"
:
[
{
"name"
:
"app"
,
"script"
:
"./dist/index.js"
,
"instances"
:
1
,
"autorestart"
:
true
,
"watch"
:
false
,
"time"
:
true
,
"env_production"
:
{
"NODE_ENV"
:
"production"
}
,
"env_test"
:
{
"NODE_ENV"
:
"test"
}
}
]
}