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