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