-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
83 lines (65 loc) · 2.16 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* The code is setting up a server using the Express framework in JavaScript. It imports necessary
modules such as `express`, `body-parser`, and `sequelize`. It also imports various routes and models
from different files. */
const express = require("express")
const bodyParser = require("body-parser")
const sequelize = require("./src/util/database")
const categoryRoutes = require("./src/routes/category")
const productRoutes = require("./src/routes/product")
const authRoutes = require("./src/routes/auth")
const cartRoutes = require("./src/routes/cart")
const User = require("./src/model/user")
const Product = require("./src/model/product")
const Category = require("./src/model/category")
const Order = require("./src/model/order")
const Role = require("./src/model/role")
const UserRole = require("./src/model/userRole")
const Cart = require("./src/model/cart")
const CartItem = require("./src/model/cartItem")
const app = express()
app.use(bodyParser.json());
app.use(categoryRoutes)
app.use(authRoutes)
app.use(productRoutes)
app.use(cartRoutes)
app.use((error, req, res, next) => {
res.status(error.statusCode || 500).json({ message: error.message })
})
Role.create({
name: "admin"
}).then((role) => {
console.log("Admin role created:", role);
}).catch((error) => {
console.error("Error creating admin role:", error);
});
Role.create({
name: "customer"
}).then((role) => {
console.log("Customer role created:", role);
}).catch((error) => {
console.error("Error creating user role:", error);
});
Role.create({
name: "seller"
}).then((role) => {
console.log("seller role created:", role);
}).catch((error) => {
console.error("Error creating user role:", error);
});
User.hasOne(Cart)
Product.belongsToMany(User, { through: Order })
Category.hasMany(Product)
User.belongsToMany(Role, { through: UserRole });
Role.belongsToMany(User, { through: UserRole })
Cart.belongsToMany(Product, { through: CartItem });
Product.belongsToMany(Cart, { through: CartItem })
sequelize
.sync()
.then((result) => {
app.listen(8080, () => {
console.log("App is running on port 8080")
})
})
.catch((error) => {
console.error('Error syncing database:', error);
});