Skip to content

Commit 145cab4

Browse files
committed
Updated: .gitignore files
1 parent 1eb7ec2 commit 145cab4

File tree

1 file changed

+92
-21
lines changed

1 file changed

+92
-21
lines changed

.gitignore

Lines changed: 92 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,107 @@
1-
# frontend dependencies
2-
3-
node_modules/
4-
public/
5-
build/
6-
assets/
7-
1+
bin/
2+
src/static/
3+
src/staticfiles/css/
4+
src/staticfiles/js/
5+
src/staticfiles/**/*.svg
6+
src/staticfiles/**/*.png
7+
src/staticfiles/**/*.jpg
8+
src/staticfiles/**/*.jpeg
9+
src/staticfiles/**/*.gif
10+
src/staticfiles/**/*.webp
11+
src/staticfiles/**/*.ico
12+
/static-cdn-local/
813
logs
914
*.log
1015
npm-debug.log*
1116
yarn-debug.log*
1217
yarn-error.log*
1318
pnpm-debug.log*
1419
lerna-debug.log*
15-
1620
node_modules
1721
dist
1822
dist-ssr
1923
*.local
20-
2124
.idea
2225
.DS_Store
23-
24-
# backend dependies
25-
26-
Lib/
27-
Include/
28-
Scripts/
29-
26+
*.suo
27+
*.ntvs*
28+
*.njsproj
29+
*.sln
30+
*.sw?
3031
__pycache__/
31-
32-
bin/
32+
*.py[cod]
33+
*$py.class
34+
*.so
35+
.Python
36+
build/
37+
develop-eggs/
38+
dist/
39+
downloads/
40+
eggs/
41+
.eggs/
3342
lib/
34-
lib64
35-
share/
36-
include
43+
lib64/
44+
parts/
45+
sdist/
46+
var/
47+
wheels/
48+
share/python-wheels/
49+
*.egg-info/
50+
.installed.cfg
51+
*.egg
52+
MANIFEST
53+
*.manifest
54+
*.spec
55+
pip-log.txt
56+
pip-delete-this-directory.txt
57+
htmlcov/
58+
.tox/
59+
.nox/
60+
.coverage
61+
.coverage.*
62+
.cache
63+
nosetests.xml
64+
coverage.xml
65+
*.cover
66+
*.py,cover
67+
.hypothesis/
68+
.pytest_cache/
69+
cover/
70+
*.mo
71+
*.pot
72+
*.log
73+
local_settings.py
74+
db.sqlite3
75+
db.sqlite3-journal
76+
instance/
77+
.webassets-cache
78+
.scrapy
79+
docs/_build/
80+
.pybuilder/
81+
target/
82+
.ipynb_checkpoints
83+
profile_default/
84+
ipython_config.py
85+
Pipfile.lock
86+
.pdm.toml
87+
__pypackages__/
88+
celerybeat-schedule
89+
celerybeat.pid
90+
*.sage.py
91+
.env
92+
.venv
93+
env/
94+
venv/
95+
ENV/
96+
env.bak/
97+
venv.bak/
98+
.spyderproject
99+
.spyproject
100+
.ropeproject
101+
/site
102+
.mypy_cache/
103+
.dmypy.json
104+
dmypy.json
105+
.pyre/
106+
.pytype/
107+
cython_debug/

0 commit comments

Comments
 (0)