-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
29 lines (20 loc) · 808 Bytes
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
const http = require('http');
const logger = require('fancy-log');
const main = require('./src/main');
const admin = require('firebase-admin');
// Require path to your Service Account JSON (Example: require('path_to_file');)
const SERVICE_ACCOUNT = require('./firebase.json');
const GCLOUD_ENV_VAR = process.env.GCLOUD_PROJECT;
if (GCLOUD_ENV_VAR === undefined || GCLOUD_ENV_VAR === '') {
logger.error('Configure GCLOUD_PROJECT environment variable, it\'s required!');
}
if (SERVICE_ACCOUNT === undefined) {
logger.error('Configure SERVICE_ACCOUNT, it\'s required!');
}
admin.initializeApp({
credential: admin.credential.cert(SERVICE_ACCOUNT),
});
const port = process.env.PORT || 3001;
const server = http.createServer(main);
server.listen(port);
logger(`Server is running on port ${port}`);