Add windows venv to gitignore
[perfect-gift.git] / .gitignore
1 # python venv
2 backend/bin/
3 backend/lib*
4 backend/Scripts
5 backend/pyvenv.cfg
6
7 # dependencies
8 frontend/node_modules
9 frontend/.pnp
10 frontend/.pnp.js
11
12 # testing
13 frontend/coverage
14
15 # production
16 frontend/build
17
18 # misc CRA
19 .env.local
20 .env.development.local
21 .env.test.local
22 .env.production.local
23
24 npm-debug.log*
25 yarn-debug.log*
26 yarn-error.log*