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