This website works better with JavaScript.
Home
Explore
Help
Sign In
frallatta
/
Google-Admin-SDK
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix Port Configuration
master
Frallatta
4 years ago
parent
e97f35f474
commit
e4d7d88c6b
2 changed files
with
19 additions
and
18 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+18
-17
ecosystem.config.js
+1
-1
index.js
+ 18
- 17
ecosystem.config.js
View File
@@ -1,19 +1,20 @@
module.exports = {
apps : [{
name: 'FCM-SDK-Admin',
script: 'index.js',
exec_mode: 'cluster',
instances: "1",
watch: true,
time:true,
env: {
"PORT": 3004,
"NODE_ENV": "development",
},
env_production : {
"PORT": 3004,
"NODE_ENV": "production"
}
}]
apps: [
{
name: "FCM-SDK-Admin",
script: "index.js",
exec_mode: "cluster",
instances: "1",
watch: true,
time: true,
env: {
PORT: 14003,
NODE_ENV: "development",
},
env_production: {
PORT: 14003,
NODE_ENV: "production",
},
},
],
};
+ 1
- 1
index.js
View File
@@ -1,7 +1,7 @@
const express = require("express");
const path = require("path");
var admin = require("firebase-admin");
const port = process.env.PORT ||
3004
;
const port = process.env.PORT ||
14003
;
var dirPath = path.join(__dirname, "fcm_key");
Write
Preview
Loading…
Cancel
Save