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