-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
51 lines (40 loc) · 1.34 KB
/
app.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
const express = require('express');
const path = require('path');
const logger = require('morgan');
const cookieParser = require('cookie-parser');
const bodyParser = require('body-parser');
const admin = require('firebase-admin');
var cors = require('cors');
if (process.env.NODE_ENV === 'development') {
const dotenv = require('dotenv');
const result = dotenv.config();
dotenv.load();
}
const info = require('./.auth.js');
admin.initializeApp({
credential: admin.credential.cert(info.firebase),
databaseURL: "https://spotify-events-af226.firebaseio.com"
});
const events = require('./routes/index');
const app = express();
app.use(cors());
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
app.use('/api/v1/events', events);
app.use(express.static(path.join(__dirname +'/build/')))//serves the index.html
app.get('*', (req, res)=>{
res.sendFile(path.join(__dirname + '/build/index.html'));
})
// catch 404 and forward to error handler
app.use(function(err, req, res, next){
res.status(err.status || 500);
console.log(err.message);
res.send({
message: err.message,
error: err
});
return;
});
module.exports = app;