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