-
Notifications
You must be signed in to change notification settings - Fork 45
/
.gitignore
46 lines (42 loc) · 894 Bytes
/
.gitignore
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
/backend/node_modules
/frontend/node_modules
/backend/env
/backend/.env
.DS_Store
.snfoundry_cache/
target/
## next app git ignore
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/client_test/node_modules
/client_test/.pnp
/client_test/.pnp.*
/client_test/.yarn/*
/client_test/!.yarn/patches
/client_test/!.yarn/plugins
/client_test/!.yarn/releases
/client_test/!.yarn/versions
# testing
/client_test/coverage
# next.js
/client_test/.next/
/client_test/out/
# production
/client_test/build
# misc
/client_test/.DS_Store
/client_test/*.pem
# debug
/client_test/npm-debug.log*
/client_test/yarn-debug.log*
/client_test/yarn-error.log*
# env files (can opt-in for committing if needed)
/client_test/.env*
# vercel
/client_test/.vercel
# typescript
/client_test/*.tsbuildinfo
/client_test/next-env.d.ts
**/*/.env
**/*/dist
**/*/node_modules