Set up JSON endpoint for wishlist entries
[perfect-gift.git] / .gitignore
1 # python venv
2 backend/bin/
3 backend/lib*
4 backend/Scripts
5 backend/pyvenv.cfg
6
7 # python
8 backend/__pycache__
9
10 # backend db
11 backend/db.sqlite
12
13 # dependencies
14 frontend/node_modules
15 frontend/.pnp
16 frontend/.pnp.js
17
18 # testing
19 frontend/coverage
20
21 # production
22 frontend/build
23
24 # misc CRA
25 .env.local
26 .env.development.local
27 .env.test.local
28 .env.production.local
29
30 npm-debug.log*
31 yarn-debug.log*
32 yarn-error.log*