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