Firebase Cloud Messaging SDK Admin
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
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. };