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