-
Notifications
You must be signed in to change notification settings - Fork 10
/
swagger.json
36 lines (36 loc) · 927 Bytes
/
swagger.json
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
{
"swaggerDefinition": {
"openapi": "3.0.0",
"info": {
"title": "Node Rest API",
"version": "1.0.0",
"description": "Node API is production ready and open source project in Node, Express, MongoDB",
"license": {
"name": "MIT",
"url": "https://choosealicense.com/licenses/mit/"
},
"contact": {
"name": "Renan Lopes",
"url": "https://lopesrenan.com",
"email": "[email protected]"
}
},
"servers": [
{
"url": "http://localhost:8080"
},
{
"url": "https://rest-api-node-413916.uc.r.appspot.com"
}
]
},
"apis": [
"./src/app/Middleware/AuthMiddleware.js",
"./src/app/Models/User.js",
"./src/routes/public/user.js",
"./src/routes/private/user.js",
"./src/app/Models/Project.js",
"./src/routes/public/project.js",
"./src/routes/private/project.js"
]
}