Firebase Cloud Messaging SDK Admin
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
281 B

  1. module.exports = {
  2. apps : [{
  3. name: 'FCM-SDK-Admin',
  4. script: 'index.js',
  5. exec_mode: 'cluster',
  6. instances: "1",
  7. watch: true,
  8. env: {
  9. "PORT": 3002,
  10. "NODE_ENV": "development",
  11. },
  12. env_production : {
  13. "PORT": 3002,
  14. "NODE_ENV": "production"
  15. }
  16. }]
  17. };