]> git.lizzy.rs Git - cheatdb.git/blob - .gitignore
Fix typo
[cheatdb.git] / .gitignore
1 /config.cfg
2 /*.env
3 *.sqlite
4 .vscode
5 custom.css
6 tmp
7 log.txt
8 *.rdb
9 app/public/uploads
10 app/public/thumbnails
11 celerybeat-schedule
12 /data
13
14 # Created by https://www.gitignore.io/api/linux,macos,python,windows
15
16 ### Linux ###
17 *~
18
19 # temporary files which can be created if a process still has a handle open of a deleted file
20 .fuse_hidden*
21
22 # KDE directory preferences
23 .directory
24
25 # Linux trash folder which might appear on any partition or disk
26 .Trash-*
27
28 # .nfs files are created when an open file is removed but is still being accessed
29 .nfs*
30
31 ### macOS ###
32 *.DS_Store
33 .AppleDouble
34 .LSOverride
35
36 # Icon must end with two \r
37 Icon
38
39 # Thumbnails
40 ._*
41
42 # Files that might appear in the root of a volume
43 .DocumentRevisions-V100
44 .fseventsd
45 .Spotlight-V100
46 .TemporaryItems
47 .Trashes
48 .VolumeIcon.icns
49 .com.apple.timemachine.donotpresent
50
51 # Directories potentially created on remote AFP share
52 .AppleDB
53 .AppleDesktop
54 Network Trash Folder
55 Temporary Items
56 .apdisk
57
58 ### Python ###
59 # Byte-compiled / optimized / DLL files
60 __pycache__/
61 *.py[cod]
62 *$py.class
63
64 # C extensions
65 *.so
66
67 # Distribution / packaging
68 .Python
69 build/
70 develop-eggs/
71 dist/
72 downloads/
73 eggs/
74 .eggs/
75 lib/
76 lib64/
77 parts/
78 sdist/
79 var/
80 wheels/
81 *.egg-info/
82 .installed.cfg
83 *.egg
84
85 # PyInstaller
86 #  Usually these files are written by a python script from a template
87 #  before PyInstaller builds the exe, so as to inject date/other infos into it.
88 *.manifest
89 *.spec
90
91 # Installer logs
92 pip-log.txt
93 pip-delete-this-directory.txt
94
95 # Unit test / coverage reports
96 htmlcov/
97 .tox/
98 .coverage
99 .coverage.*
100 .cache
101 .pytest_cache/
102 nosetests.xml
103 coverage.xml
104 *.cover
105 .hypothesis/
106
107 # Translations
108 *.mo
109 *.pot
110
111 # Flask stuff:
112 instance/
113 .webassets-cache
114
115 # Scrapy stuff:
116 .scrapy
117
118 # Sphinx documentation
119 docs/_build/
120
121 # PyBuilder
122 target/
123
124 # Jupyter Notebook
125 .ipynb_checkpoints
126
127 # pyenv
128 .python-version
129
130 # celery beat schedule file
131 celerybeat-schedule.*
132
133 # SageMath parsed files
134 *.sage.py
135
136 # Environments
137 .env
138 .venv
139 env/
140 venv/
141 ENV/
142 env.bak/
143 venv.bak/
144
145 # Spyder project settings
146 .spyderproject
147 .spyproject
148
149 # Rope project settings
150 .ropeproject
151
152 # mkdocs documentation
153 /site
154
155 # mypy
156 .mypy_cache/
157
158 ### Windows ###
159 # Windows thumbnail cache files
160 Thumbs.db
161 ehthumbs.db
162 ehthumbs_vista.db
163
164 # Folder config file
165 Desktop.ini
166
167 # Recycle Bin used on file shares
168 $RECYCLE.BIN/
169
170 # Windows Installer files
171 *.cab
172 *.msi
173 *.msm
174 *.msp
175
176 # Windows shortcuts
177 *.lnk
178
179
180 # End of https://www.gitignore.io/api/linux,macos,python,windows