-
Notifications
You must be signed in to change notification settings - Fork 0
/
fastify-mongo.txt
65 lines (64 loc) · 1.97 KB
/
fastify-mongo.txt
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
├── .github
│ └── workflows
│ ├── lint.yml
│ └── test.yml
├── prisma
│ └── schema.prisma
├── src
│ ├── database
│ │ ├── mongo
│ │ │ ├── queries
│ │ │ │ ├── index.ts
│ │ │ │ └── user.ts
│ │ │ ├── connection.ts
│ │ │ └── index.ts
│ │ └── index.ts
│ ├── network
│ │ ├── routes
│ │ │ ├── docs.ts
│ │ │ ├── home.ts
│ │ │ ├── index.ts
│ │ │ └── user.ts
│ │ ├── index.ts
│ │ ├── response.ts
│ │ ├── router.ts
│ │ └── server.ts
│ ├── schemas
│ │ ├── id.ts
│ │ ├── index.ts
│ │ └── user.ts
│ ├── services
│ │ ├── utils
│ │ │ ├── messages
│ │ │ │ ├── index.ts
│ │ │ │ └── user.ts
│ │ │ └── index.ts
│ │ ├── BaseHttp.ts
│ │ ├── index.ts
│ │ └── User.ts
│ ├── @types
│ │ ├── models
│ │ │ └── user.d.ts
│ │ └── index.d.ts
│ ├── utils
│ │ ├── index.ts
│ │ └── Logger.ts
│ └── index.ts
├── test
│ └── index.test.ts
├── CHANGELOG.md
├── Dockerfile
├── .dockerignore
├── .env
├── .eslintignore
├── .eslintrc
├── .gitignore
├── index.http
├── jest.config.ts
├── LICENSE
├── package.json
├── pnpm-lock.yaml
├── README.md
├── tsconfig.base.json
└── tsconfig.json
18 directories, 46 files