Showing
2 changed files
with
9 additions
and
9 deletions
backend/.gitignore
0 → 100644
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. |
2 | 2 | ||
3 | # dependencies | 3 | # dependencies |
4 | -/backend/env | 4 | +/node_modules |
5 | -/frontend/node_modules | 5 | +/.pnp |
6 | -/frontend/.pnp | ||
7 | .pnp.js | 6 | .pnp.js |
8 | 7 | ||
9 | # testing | 8 | # testing |
10 | -/frontend/coverage | 9 | +/coverage |
11 | 10 | ||
12 | # production | 11 | # production |
13 | -/frontend/build | 12 | +/build |
14 | - | ||
15 | -# database | ||
16 | -/backend/db.sqlite3 | ||
17 | 13 | ||
18 | # misc | 14 | # misc |
19 | .DS_Store | 15 | .DS_Store |
... | @@ -21,7 +17,6 @@ | ... | @@ -21,7 +17,6 @@ |
21 | .env.development.local | 17 | .env.development.local |
22 | .env.test.local | 18 | .env.test.local |
23 | .env.production.local | 19 | .env.production.local |
24 | -__pycache__ | ||
25 | 20 | ||
26 | npm-debug.log* | 21 | npm-debug.log* |
27 | yarn-debug.log* | 22 | yarn-debug.log* | ... | ... |
-
Please register or login to post a comment