-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
104 lines (94 loc) · 1.26 KB
/
.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# IDE
.vscode
.idea
.DS_Store
# Django API
api/staticfiles/
api/.envs/*
!api/.envs/.env.example
.env
.venv
# Python
**/__pycache__/
*.py[cod]
*$py.class
*.so
# Local DB
db.sqlite3
api/db.sqlite3
# Python packaging
.Python
api/build/
api/develop-eggs/
api/dist/
api/downloads/
api/eggs/
api/.eggs/
api/lib/
api/lib64/
api/parts/
api/sdist/
api/var/
api/wheels/
api/share/python-wheels/
api/*.egg-info/
api/.installed.cfg
api/*.egg
api/MANIFEST
api/*.manifest
api/*.spec
# Python logs and tests
api/pip-log.txt
api/pip-delete-this-directory.txt
api/htmlcov/
api/.tox/
api/.nox/
api/.coverage
api/.coverage.*
api/.cache
api/nosetests.xml
api/coverage.xml
api/*.cover
api/*.py,cover
api/.hypothesis/
api/.pytest_cache/
api/cover/
# Django
api/*.log
api/local_settings.py
api/db.sqlite3
api/db.sqlite3-journal
# Python environments
api/.env
api/.venv
api/env/
api/venv/
api/ENV/
api/env.bak/
api/venv.bak/
# Python tools
api/.mypy_cache/
api/.dmypy.json
api/dmypy.json
api/.pyre/
api/.pytype/
api/cython_debug/
# Next.js Web
web/node_modules
web/.pnp
web/.pnp.js
web/.yarn/install-state.gz
web/coverage
web/.next/
web/out/
web/build
web/.DS_Store
web/*.pem
web/npm-debug.log*
web/yarn-debug.log*
web/yarn-error.log*
web/.env*.production
web/.vercel
web/*.tsbuildinfo
# Keep
!web/src/lib