Skip to content
This repository was archived by the owner on Jul 4, 2022. It is now read-only.

Commit 01a9979

Browse files
committed
initial commit
0 parents  commit 01a9979

16 files changed

Lines changed: 4432 additions & 0 deletions

.gitignore

Lines changed: 378 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,378 @@
1+
# Swap
2+
[._]*.s[a-v][a-z]
3+
!*.svg # comment out if you don't need vector files
4+
[._]*.sw[a-p]
5+
[._]s[a-rt-v][a-z]
6+
[._]ss[a-gi-z]
7+
[._]sw[a-p]
8+
9+
# Session
10+
Session.vim
11+
Sessionx.vim
12+
13+
# Temporary
14+
.netrwhist
15+
*~
16+
# Auto-generated tag files
17+
tags
18+
# Persistent undo
19+
[._]*.un~
20+
# Binaries for programs and plugins
21+
*.exe
22+
*.exe~
23+
*.dll
24+
*.so
25+
*.dylib
26+
27+
# Test binary, built with `go test -c`
28+
*.test
29+
30+
# Output of the go coverage tool, specifically when used with LiteIDE
31+
*.out
32+
33+
# Dependency directories (remove the comment below to include it)
34+
# vendor/
35+
36+
# General
37+
.DS_Store
38+
.AppleDouble
39+
.LSOverride
40+
41+
# Icon must end with two \r
42+
Icon
43+
44+
# Thumbnails
45+
._*
46+
47+
# Files that might appear in the root of a volume
48+
.DocumentRevisions-V100
49+
.fseventsd
50+
.Spotlight-V100
51+
.TemporaryItems
52+
.Trashes
53+
.VolumeIcon.icns
54+
.com.apple.timemachine.donotpresent
55+
56+
# Directories potentially created on remote AFP share
57+
.AppleDB
58+
.AppleDesktop
59+
Network Trash Folder
60+
Temporary Items
61+
.apdisk
62+
63+
# Logs
64+
logs
65+
*.log
66+
npm-debug.log*
67+
yarn-debug.log*
68+
yarn-error.log*
69+
lerna-debug.log*
70+
71+
# Diagnostic reports (https://nodejs.org/api/report.html)
72+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
73+
74+
# Runtime data
75+
pids
76+
*.pid
77+
*.seed
78+
*.pid.lock
79+
80+
# Directory for instrumented libs generated by jscoverage/JSCover
81+
lib-cov
82+
83+
# Coverage directory used by tools like istanbul
84+
coverage
85+
*.lcov
86+
87+
# nyc test coverage
88+
.nyc_output
89+
90+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
91+
.grunt
92+
93+
# Bower dependency directory (https://bower.io/)
94+
bower_components
95+
96+
# node-waf configuration
97+
.lock-wscript
98+
99+
# Compiled binary addons (https://nodejs.org/api/addons.html)
100+
build/Release
101+
102+
# Dependency directories
103+
node_modules/
104+
jspm_packages/
105+
106+
# Snowpack dependency directory (https://snowpack.dev/)
107+
web_modules/
108+
109+
# TypeScript cache
110+
*.tsbuildinfo
111+
112+
# Optional npm cache directory
113+
.npm
114+
115+
# Optional eslint cache
116+
.eslintcache
117+
118+
# Microbundle cache
119+
.rpt2_cache/
120+
.rts2_cache_cjs/
121+
.rts2_cache_es/
122+
.rts2_cache_umd/
123+
124+
# Optional REPL history
125+
.node_repl_history
126+
127+
# Output of 'npm pack'
128+
*.tgz
129+
130+
# Yarn Integrity file
131+
.yarn-integrity
132+
133+
# dotenv environment variables file
134+
.env
135+
.env.test
136+
137+
# parcel-bundler cache (https://parceljs.org/)
138+
.cache
139+
.parcel-cache
140+
141+
# Next.js build output
142+
.next
143+
out
144+
145+
# Nuxt.js build / generate output
146+
.nuxt
147+
dist
148+
149+
# Gatsby files
150+
.cache/
151+
# Comment in the public line in if your project uses Gatsby and not Next.js
152+
# https://nextjs.org/blog/next-9-1#public-directory-support
153+
# public
154+
155+
# vuepress build output
156+
.vuepress/dist
157+
158+
# Serverless directories
159+
.serverless/
160+
161+
# FuseBox cache
162+
.fusebox/
163+
164+
# DynamoDB Local files
165+
.dynamodb/
166+
167+
# TernJS port file
168+
.tern-port
169+
170+
# Stores VSCode versions used for testing VSCode extensions
171+
.vscode-test
172+
173+
# yarn v2
174+
.yarn/cache
175+
.yarn/unplugged
176+
.yarn/build-state.yml
177+
.yarn/install-state.gz
178+
.pnp.*
179+
180+
# Byte-compiled / optimized / DLL files
181+
__pycache__/
182+
*.py[cod]
183+
*$py.class
184+
185+
# C extensions
186+
*.so
187+
188+
# Distribution / packaging
189+
.Python
190+
build/
191+
develop-eggs/
192+
dist/
193+
downloads/
194+
eggs/
195+
.eggs/
196+
lib/
197+
lib64/
198+
parts/
199+
sdist/
200+
var/
201+
wheels/
202+
share/python-wheels/
203+
*.egg-info/
204+
.installed.cfg
205+
*.egg
206+
MANIFEST
207+
208+
# PyInstaller
209+
# Usually these files are written by a python script from a template
210+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
211+
*.manifest
212+
*.spec
213+
214+
# Installer logs
215+
pip-log.txt
216+
pip-delete-this-directory.txt
217+
218+
# Unit test / coverage reports
219+
htmlcov/
220+
.tox/
221+
.nox/
222+
.coverage
223+
.coverage.*
224+
.cache
225+
nosetests.xml
226+
coverage.xml
227+
*.cover
228+
*.py,cover
229+
.hypothesis/
230+
.pytest_cache/
231+
cover/
232+
233+
# Translations
234+
*.mo
235+
*.pot
236+
237+
# Django stuff:
238+
*.log
239+
local_settings.py
240+
db.sqlite3
241+
db.sqlite3-journal
242+
243+
# Flask stuff:
244+
instance/
245+
.webassets-cache
246+
247+
# Scrapy stuff:
248+
.scrapy
249+
250+
# Sphinx documentation
251+
docs/_build/
252+
253+
# PyBuilder
254+
.pybuilder/
255+
target/
256+
257+
# Jupyter Notebook
258+
.ipynb_checkpoints
259+
260+
# IPython
261+
profile_default/
262+
ipython_config.py
263+
264+
# pyenv
265+
# For a library or package, you might want to ignore these files since the code is
266+
# intended to run in multiple environments; otherwise, check them in:
267+
# .python-version
268+
269+
# pipenv
270+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
271+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
272+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
273+
# install all needed dependencies.
274+
#Pipfile.lock
275+
276+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
277+
__pypackages__/
278+
279+
# Celery stuff
280+
celerybeat-schedule
281+
celerybeat.pid
282+
283+
# SageMath parsed files
284+
*.sage.py
285+
286+
# Environments
287+
.env
288+
.venv
289+
env/
290+
venv/
291+
ENV/
292+
env.bak/
293+
venv.bak/
294+
295+
# Spyder project settings
296+
.spyderproject
297+
.spyproject
298+
299+
# Rope project settings
300+
.ropeproject
301+
302+
# mkdocs documentation
303+
/site
304+
305+
# mypy
306+
.mypy_cache/
307+
.dmypy.json
308+
dmypy.json
309+
310+
# Pyre type checker
311+
.pyre/
312+
313+
# pytype static type analyzer
314+
.pytype/
315+
316+
# Cython debug symbols
317+
cython_debug/
318+
319+
# Prerequisites
320+
*.d
321+
322+
# Object files
323+
*.o
324+
*.ko
325+
*.obj
326+
*.elf
327+
328+
# Linker output
329+
*.ilk
330+
*.map
331+
*.exp
332+
333+
# Precompiled Headers
334+
*.gch
335+
*.pch
336+
337+
# Libraries
338+
*.lib
339+
*.a
340+
*.la
341+
*.lo
342+
343+
# Shared objects (inc. Windows DLLs)
344+
*.dll
345+
*.so
346+
*.so.*
347+
*.dylib
348+
349+
# Executables
350+
*.exe
351+
*.out
352+
*.app
353+
*.i*86
354+
*.x86_64
355+
*.hex
356+
357+
# Debug files
358+
*.dSYM/
359+
*.su
360+
*.idb
361+
*.pdb
362+
363+
# Kernel Module Compile Results
364+
*.cmd
365+
.tmp_versions/
366+
modules.order
367+
Module.symvers
368+
Mkfile.old
369+
dkms.conf
370+
371+
# Generated files by hugo
372+
/public/
373+
/resources/_gen/
374+
375+
# Executable may be added to repository
376+
hugo.exe
377+
hugo.darwin
378+
hugo.linux

0 commit comments

Comments
 (0)