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