Last active
August 22, 2018 18:38
-
-
Save jackfiallos/a9363778cedb55207d7f32c3f7104092 to your computer and use it in GitHub Desktop.
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: 'api.domain.com', | |
| script: 'server.js', | |
| output: './logs/api.console.log', | |
| error: './logs/api.error.log', | |
| log_type: 'json', | |
| log_date_format: 'DD-MM-YYYY', | |
| env: { | |
| NODE_ENV: 'development' | |
| }, | |
| env_production: { | |
| NODE_ENV: 'production' | |
| } | |
| } | |
| ] | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment