-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
75 lines (71 loc) · 1.73 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
publicModels = null;
var mysql = require("mysql");
const express = require("express");
const app = express();
const bodyParser = require("body-parser");
const passport = require("passport");
const orm = require("orm");
const cors = require("cors");
app.use(
cors({
origin: "http://localhost:4200",
})
);
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
const dbConnectionInfo = require("./config/keys").dbConnectionInfo;
app.use(
orm.express(dbConnectionInfo, {
define: function (db, models, next) {
publicModels = models;
models.user = db.define("users", {
id: {
type: "integer",
size: 4,
key: true,
},
user_id: {
type: "text",
size: 100,
},
name: {
type: "text",
size: 100,
},
pass: {
type: "text",
size: 100,
},
last_notification_id_viewed: {
type: "integer",
size: 4,
defaultValue: 0,
},
});
models.notification = db.define("notifications", {
id: {
type: "integer",
size: 4,
key: true,
},
u_id: {
type: "integer",
size: 4,
},
sender_u_id: {
type: "integer",
size: 4,
},
});
next();
},
})
);
app.use(passport.initialize());
require("./config/passport")(passport);
const users = require("./routers/api/users");
app.use("/api/users", users);
const notifications = require("./routers/api/notifications");
app.use("/api/notifications", notifications);
const port = process.env.PORT || 5000;
app.listen(port, () => console.log(`server is running on ${port}`));