-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
48 lines (46 loc) · 1.22 KB
/
server.js
File metadata and controls
48 lines (46 loc) · 1.22 KB
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
const express = require("express");
const bodyParser = require("body-parser");
const cors = require("cors");
var bcrypt = require("bcryptjs");
const app = express();
var corsOptions = {
origin: "http://localhost:8081"
};
app.use(cors(corsOptions));
// parse requests of content-type - application/json
app.use(bodyParser.json());
// parse requests of content-type - application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: true }));
const db = require("./app/models");
const { user } = require("./app/models");
const Role = db.role;
const User = db.user;
db.sequelize.sync({force: true}).then(() => {
console.log('Drop and Resync Db');
initial();
});
function initial() {
User.create({
username: "admin",
email :"admin@admin.com",
password: bcrypt.hashSync('12345678', 8),
role:"admin"
});
Role.create({
id: 1,
name: "user"
});
Role.create({
id: 2,
name: "admin"
});
}
app.get("/", (req, res) => {
res.json({ message: "Welcome to ahmetserefoglu application." });
});
require('./app/routes/auth.routes')(app);
require('./app/routes/user.routes')(app);
const PORT = process.env.PORT || 8080;
app.listen(PORT, () => {
console.log(`Server is running on port ${PORT}.`);
});