Skip to content

Commit 866d879

Browse files
committed
aula39
1 parent b47bebf commit 866d879

File tree

6 files changed

+867
-0
lines changed

6 files changed

+867
-0
lines changed

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# local env files
28+
.env*.local
29+
.env.example
30+
.env
31+
.env.local
32+
.env.development.local
33+
/.env.example

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"dependencies": {
3+
"express": "^5.1.0",
4+
"swagger-ui-express": "^5.0.1",
5+
"swagger-jsdoc": "^6.2.8"
6+
}
7+
}

0 commit comments

Comments
 (0)