-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.ts
141 lines (124 loc) · 3.34 KB
/
index.ts
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
import express from "express";
import { router } from "./src/routes/routes";
const morgan = require('morgan');
{
// class Server {
// app: express.Application;
// constructor() {
// this.app = express()
// this.config()
// this.routes()
// }
// config() {
// this.app.use(express.json())
// }
// routes(){
// this.app.use("/", routes)
// }
// start() {
// this.app.listen(3000, () => {
// console.log("servidor en el puerto 3000")
// })
// }
// }
// const prisma = new PrismaClient()
// async function main() {
// await prisma.$connect();
// await prisma.products.create({
// data: {
// name: "burguer",
// image: "string",
// description: "string",
// price: 3213,
// stock: 321,
// shopId: "6220d4cd519374b7107f5480",
// categoriesId: "6220d4cd519374b7107f5480",
// orderId: "6220d4cd519374b7107f5480",
// },
// });
// }
// main();
// data: {
// name: "teinda",
// direction: "fdskjal",
// image: "fdfdjsal",
// description: "fjdklsajofdsa",
// userId: "62213f79b20237f4350648a6",
// },
// name String
// name_user String
// email String @unique
// direction String
// rol Int
// shops Shops[]
// categories: {
// create: [
// {
// name: 'hot',
// },
// {
// name: 'cold'
// }
// ]
// }
// export type ShopsCreateInput = {
// id?: string
// name: string
// direction: string
// image: string
// description: string
// user: UsersCreateNestedOneWithoutShopsInput
// products?: ProductsCreateNestedManyWithoutShopInput
// }
// export type ProductsCreateInput = {
// id?: string
// name: string
// image: string
// description: string
// price: number
// discount?: string | null
// stock: number
// categories?: CategoriesCreateNestedManyWithoutProductsInput
// categoriesId?: ProductsCreatecategoriesIdInput | Enumerable<string>
// shop: ShopsCreateNestedOneWithoutProductsInput
// order?: OrdersCreateNestedOneWithoutProductsInput
// }
// id String @id @default(auto()) @map("_id") @db.ObjectId
// name String
// image String
// description String
// price Int
// discount String?
// stock Int
// categories Categories[] @relation(fields: [categoriesId], references: [id])
// categoriesId String[] @db.ObjectId
// shop Shops @relation(fields: [shopId], references: [id])
// shopId String @db.ObjectId
// order Orders? @relation(fields: [orderId], references: [id])
// orderId String @db.ObjectId
// efault(auto()) @map("_id") @db.ObjectId
// name String
// products Products[] @relation(fields: [productId], references: [id])
// productId String[] @db.ObjectId
// const allUsers = await prisma.users.findMany()
// console.log(allUsers)
// .catch((e) => {
// throw e
// })
// .finally(async () => {
// await prisma.$disconnect()
// })
// const server = new Server()
// server.start()
}
const PORT = process.env.PORT || 3000;
const server = express();
// midlewares
server.use(express.json({ limit: '50mb' }));
server.use(express.urlencoded({ extended: true, limit: '50mb' }));
server.use(morgan('dev'));
// routes
server.use("/", router);
server.listen(PORT, () => {
console.log("servidor en el puerto" + PORT);
});