Skip to content

Commit 47b0ffa

Browse files
committed
updated .gitignore file with gitignore.io results for having a more generic one.
1 parent 8f087bc commit 47b0ffa

File tree

1 file changed

+219
-7
lines changed

1 file changed

+219
-7
lines changed

.gitignore

Lines changed: 219 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,228 @@
1-
node_modules
1+
# This file is generated by `gitignore.io` with some slight modifications.
22

3-
__pycache__
3+
core/frontend/public/build/*
4+
5+
### Django ###
6+
*.log
7+
*.pot
48
*.pyc
9+
__pycache__/
10+
*.sqlite3
11+
media
12+
13+
### Node ###
14+
# Logs
15+
logs
16+
npm-debug.log*
17+
yarn-debug.log*
18+
yarn-error.log*
19+
20+
# Runtime data
21+
pids
22+
*.pid
23+
*.seed
24+
*.pid.lock
25+
26+
# Directory for instrumented libs generated by jscoverage/JSCover
27+
lib-cov
28+
29+
# Coverage directory used by tools like istanbul
30+
coverage
31+
32+
# nyc test coverage
33+
.nyc_output
34+
35+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
36+
.grunt
37+
38+
# Bower dependency directory (https://bower.io/)
39+
bower_components
40+
41+
# node-waf configuration
42+
.lock-wscript
43+
44+
# Compiled binary addons (http://nodejs.org/api/addons.html)
45+
build/Release
46+
47+
# Dependency directories
48+
node_modules/
49+
jspm_packages/
50+
51+
# Typescript v1 declaration files
52+
typings/
53+
54+
# Optional npm cache directory
55+
.npm
56+
57+
# Optional eslint cache
58+
.eslintcache
59+
60+
# Optional REPL history
61+
.node_repl_history
62+
63+
# Output of 'npm pack'
64+
*.tgz
65+
66+
# Yarn Integrity file
67+
.yarn-integrity
68+
69+
# dotenv environment variables file
70+
.env
71+
72+
73+
### Python ###
74+
# Byte-compiled / optimized / DLL files
75+
*.py[cod]
76+
*$py.class
77+
78+
# C extensions
79+
*.so
80+
81+
# Distribution / packaging
582
.Python
83+
build/
84+
develop-eggs/
85+
dist/
86+
downloads/
87+
eggs/
88+
.eggs/
89+
lib/
90+
lib64/
91+
parts/
92+
sdist/
93+
var/
94+
wheels/
695
*.egg-info/
96+
.installed.cfg
797
*.egg
898

9-
.env
99+
# PyInstaller
100+
*.manifest
101+
*.spec
10102

11-
core/frontend/public/build/*
103+
# Installer logs
104+
pip-log.txt
105+
pip-delete-this-directory.txt
12106

13-
*.sqlite3
107+
# Unit test / coverage reports
108+
htmlcov/
109+
.tox/
110+
.coverage
111+
.coverage.*
112+
.cache
113+
nosetests.xml
114+
coverage.xml
115+
*.cover
116+
.hypothesis/
14117

15-
*.pid
16-
*.log
118+
# Translations
119+
*.mo
120+
121+
# Flask stuff:
122+
instance/
123+
.webassets-cache
124+
125+
# Scrapy stuff:
126+
.scrapy
127+
128+
# Sphinx documentation
129+
docs/_build/
130+
131+
# PyBuilder
132+
target/
133+
134+
# Jupyter Notebook
135+
.ipynb_checkpoints
136+
137+
# pyenv
138+
.python-version
139+
140+
# celery beat schedule file
141+
celerybeat-schedule
142+
143+
# SageMath parsed files
144+
*.sage.py
145+
146+
# Environments
147+
.venv
148+
env/
149+
venv/
150+
ENV/
151+
env.bak/
152+
venv.bak/
153+
154+
# Spyder project settings
155+
.spyderproject
156+
.spyproject
157+
158+
# Rope project settings
159+
.ropeproject
160+
161+
# mkdocs documentation
162+
/site
163+
164+
# mypy
165+
.mypy_cache/
166+
167+
### Linux ###
168+
*~
169+
170+
# temporary files which can be created if a process still has a handle open of a deleted file
171+
.fuse_hidden*
172+
173+
# KDE directory preferences
174+
.directory
175+
176+
# Linux trash folder which might appear on any partition or disk
177+
.Trash-*
178+
179+
# .nfs files are created when an open file is removed but is still being accessed
180+
.nfs*
181+
182+
### macOS ###
183+
*.DS_Store
184+
.AppleDouble
185+
.LSOverride
186+
187+
# Icon must end with two \r
188+
Icon
189+
190+
# Thumbnails
191+
._*
192+
193+
# Files that might appear in the root of a volume
194+
.DocumentRevisions-V100
195+
.fseventsd
196+
.Spotlight-V100
197+
.TemporaryItems
198+
.Trashes
199+
.VolumeIcon.icns
200+
.com.apple.timemachine.donotpresent
201+
202+
# Directories potentially created on remote AFP share
203+
.AppleDB
204+
.AppleDesktop
205+
Network Trash Folder
206+
Temporary Items
207+
.apdisk
208+
209+
### Windows ###
210+
# Windows thumbnail cache files
211+
Thumbs.db
212+
ehthumbs.db
213+
ehthumbs_vista.db
214+
215+
# Folder config file
216+
Desktop.ini
217+
218+
# Recycle Bin used on file shares
219+
$RECYCLE.BIN/
220+
221+
# Windows Installer files
222+
*.cab
223+
*.msi
224+
*.msm
225+
*.msp
226+
227+
# Windows shortcuts
228+
*.lnk

0 commit comments

Comments
 (0)