-
-
Save yasudacloud/7f4782ad6e776f3ce0325221659c0f32 to your computer and use it in GitHub Desktop.
emdash pm2 config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = { | |
| apps: [ | |
| { | |
| name: "emdash", | |
| cwd: "/home/debian/emdash-example", | |
| script: "dist/server/entry.mjs", | |
| interpreter: "node", | |
| instances: 1, | |
| exec_mode: "fork", | |
| env: { | |
| NODE_ENV: "production", | |
| PORT: "1337" | |
| }, | |
| }, | |
| ], | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment