You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
310 B
JavaScript
14 lines
310 B
JavaScript
2 years ago
|
// This is a configuration file for pm2, a production process manager for nodejs
|
||
|
module.exports = {
|
||
|
apps : [{
|
||
2 years ago
|
name : "lean4game",
|
||
2 years ago
|
script : "server/index.mjs",
|
||
2 years ago
|
env: {
|
||
1 year ago
|
LEAN4GAME_GITHUB_USER: "",
|
||
|
LEAN4GAME_GITHUB_TOKEN: "",
|
||
|
NODE_ENV: "production",
|
||
|
PORT: 8002
|
||
2 years ago
|
},
|
||
|
}]
|
||
|
}
|