.gitignore 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547
  1. TOKEN.secret
  2. TODO.md
  3. ### IDEs
  4. .idea/
  5. .vscode/
  6. ### C and C++
  7. # Prerequisites
  8. *.d
  9. # Object files
  10. *.o
  11. *.ko
  12. *.obj
  13. *.elf
  14. # Linker output
  15. *.ilk
  16. *.map
  17. *.exp
  18. # Precompiled Headers
  19. *.gch
  20. *.pch
  21. # Libraries
  22. *.lib
  23. *.a
  24. *.la
  25. *.lai
  26. *.lo
  27. *.slo
  28. # Shared objects (inc. Windows DLLs)
  29. *.dll
  30. *.so
  31. *.so.*
  32. *.dylib
  33. # Executables
  34. *.exe
  35. *.out
  36. *.app
  37. *.i*86
  38. *.x86_64
  39. *.hex
  40. # Debug files
  41. *.dSYM/
  42. *.su
  43. *.idb
  44. *.pdb
  45. # Kernel Module Compile Results
  46. *.mod*
  47. *.cmd
  48. .tmp_versions/
  49. modules.order
  50. Module.symvers
  51. Mkfile.old
  52. dkms.conf
  53. # Fortran module files
  54. *.mod
  55. *.smod
  56. ### Java
  57. # Compiled class file
  58. *.class
  59. # Log file
  60. *.log
  61. # BlueJ files
  62. *.ctxt
  63. # Mobile Tools for Java (J2ME)
  64. .mtj.tmp/
  65. # Package Files #
  66. *.jar
  67. *.war
  68. *.nar
  69. *.ear
  70. *.zip
  71. *.tar.gz
  72. *.rar
  73. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  74. hs_err_pid*
  75. replay_pid*
  76. ### Python
  77. # Byte-compiled / optimized / DLL files
  78. __pycache__/
  79. *.py[cod]
  80. *$py.class
  81. # C extensions
  82. *.so
  83. # Distribution / packaging
  84. .Python
  85. build/
  86. develop-eggs/
  87. dist/
  88. downloads/
  89. eggs/
  90. .eggs/
  91. lib/
  92. lib64/
  93. parts/
  94. sdist/
  95. var/
  96. wheels/
  97. share/python-wheels/
  98. *.egg-info/
  99. .installed.cfg
  100. *.egg
  101. MANIFEST
  102. # PyInstaller
  103. # Usually these files are written by a python script from a template
  104. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  105. *.manifest
  106. *.spec
  107. # Installer logs
  108. pip-log.txt
  109. pip-delete-this-directory.txt
  110. # Unit test / coverage reports
  111. htmlcov/
  112. .tox/
  113. .nox/
  114. .coverage
  115. .coverage.*
  116. .cache
  117. nosetests.xml
  118. coverage.xml
  119. *.cover
  120. *.py,cover
  121. .hypothesis/
  122. .pytest_cache/
  123. cover/
  124. # Translations
  125. *.mo
  126. *.pot
  127. # Django stuff:
  128. *.log
  129. local_settings.py
  130. db.sqlite3
  131. db.sqlite3-journal
  132. # Flask stuff:
  133. instance/
  134. .webassets-cache
  135. # Scrapy stuff:
  136. .scrapy
  137. # Sphinx documentation
  138. docs/_build/
  139. # PyBuilder
  140. .pybuilder/
  141. target/
  142. # Jupyter Notebook
  143. .ipynb_checkpoints
  144. # IPython
  145. profile_default/
  146. ipython_config.py
  147. # pyenv
  148. # For a library or package, you might want to ignore these files since the code is
  149. # intended to run in multiple environments; otherwise, check them in:
  150. # .python-version
  151. # pipenv
  152. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  153. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  154. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  155. # install all needed dependencies.
  156. #Pipfile.lock
  157. # poetry
  158. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  159. # This is especially recommended for binary packages to ensure reproducibility, and is more
  160. # commonly ignored for libraries.
  161. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  162. #poetry.lock
  163. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  164. __pypackages__/
  165. # Celery stuff
  166. celerybeat-schedule
  167. celerybeat.pid
  168. # SageMath parsed files
  169. *.sage.py
  170. # Environments
  171. .env
  172. .venv
  173. env/
  174. venv/
  175. ENV/
  176. env.bak/
  177. venv.bak/
  178. # Spyder project settings
  179. .spyderproject
  180. .spyproject
  181. # Rope project settings
  182. .ropeproject
  183. # mkdocs documentation
  184. /site
  185. # mypy
  186. .mypy_cache/
  187. .dmypy.json
  188. dmypy.json
  189. # Pyre type checker
  190. .pyre/
  191. # pytype static type analyzer
  192. .pytype/
  193. # Cython debug symbols
  194. cython_debug/
  195. ### TeX
  196. ## Core latex/pdflatex auxiliary files:
  197. *.aux
  198. *.lof
  199. *.log
  200. *.lot
  201. *.fls
  202. *.out
  203. *.toc
  204. *.fmt
  205. *.fot
  206. *.cb
  207. *.cb2
  208. .*.lb
  209. ## Intermediate documents:
  210. *.dvi
  211. *.xdv
  212. *-converted-to.*
  213. # these rules might exclude image files for figures etc.
  214. # *.ps
  215. # *.eps
  216. # *.pdf
  217. ## Generated if empty string is given at "Please type another file name for output:"
  218. .pdf
  219. ## Bibliography auxiliary files (bibtex/biblatex/biber):
  220. *.bbl
  221. *.bcf
  222. *.blg
  223. *-blx.aux
  224. *-blx.bib
  225. *.run.xml
  226. ## Build tool auxiliary files:
  227. *.fdb_latexmk
  228. *.synctex
  229. *.synctex(busy)
  230. *.synctex.gz
  231. *.synctex.gz(busy)
  232. *.pdfsync
  233. ## Build tool directories for auxiliary files
  234. # latexrun
  235. latex.out/
  236. ## Auxiliary and intermediate files from other packages:
  237. # algorithms
  238. *.alg
  239. *.loa
  240. # achemso
  241. acs-*.bib
  242. # amsthm
  243. *.thm
  244. # beamer
  245. *.nav
  246. *.pre
  247. *.snm
  248. *.vrb
  249. # changes
  250. *.soc
  251. # comment
  252. *.cut
  253. # cprotect
  254. *.cpt
  255. # elsarticle (documentclass of Elsevier journals)
  256. *.spl
  257. # endnotes
  258. *.ent
  259. # fixme
  260. *.lox
  261. # feynmf/feynmp
  262. *.mf
  263. *.mp
  264. *.t[1-9]
  265. *.t[1-9][0-9]
  266. *.tfm
  267. #(r)(e)ledmac/(r)(e)ledpar
  268. *.end
  269. *.?end
  270. *.[1-9]
  271. *.[1-9][0-9]
  272. *.[1-9][0-9][0-9]
  273. *.[1-9]R
  274. *.[1-9][0-9]R
  275. *.[1-9][0-9][0-9]R
  276. *.eledsec[1-9]
  277. *.eledsec[1-9]R
  278. *.eledsec[1-9][0-9]
  279. *.eledsec[1-9][0-9]R
  280. *.eledsec[1-9][0-9][0-9]
  281. *.eledsec[1-9][0-9][0-9]R
  282. # glossaries
  283. *.acn
  284. *.acr
  285. *.glg
  286. *.glo
  287. *.gls
  288. *.glsdefs
  289. *.lzo
  290. *.lzs
  291. *.slg
  292. *.slo
  293. *.sls
  294. # uncomment this for glossaries-extra (will ignore makeindex's style files!)
  295. # *.ist
  296. # gnuplot
  297. *.gnuplot
  298. *.table
  299. # gnuplottex
  300. *-gnuplottex-*
  301. # gregoriotex
  302. *.gaux
  303. *.glog
  304. *.gtex
  305. # htlatex
  306. *.4ct
  307. *.4tc
  308. *.idv
  309. *.lg
  310. *.trc
  311. *.xref
  312. # hyperref
  313. *.brf
  314. # knitr
  315. *-concordance.tex
  316. # TODO Uncomment the next line if you use knitr and want to ignore its generated tikz files
  317. # *.tikz
  318. *-tikzDictionary
  319. # listings
  320. *.lol
  321. # luatexja-ruby
  322. *.ltjruby
  323. # makeidx
  324. *.idx
  325. *.ilg
  326. *.ind
  327. # minitoc
  328. *.maf
  329. *.mlf
  330. *.mlt
  331. *.mtc[0-9]*
  332. *.slf[0-9]*
  333. *.slt[0-9]*
  334. *.stc[0-9]*
  335. # minted
  336. _minted*
  337. *.pyg
  338. # morewrites
  339. *.mw
  340. # newpax
  341. *.newpax
  342. # nomencl
  343. *.nlg
  344. *.nlo
  345. *.nls
  346. # pax
  347. *.pax
  348. # pdfpcnotes
  349. *.pdfpc
  350. # sagetex
  351. *.sagetex.sage
  352. *.sagetex.py
  353. *.sagetex.scmd
  354. # scrwfile
  355. *.wrt
  356. # svg
  357. svg-inkscape/
  358. # sympy
  359. *.sout
  360. *.sympy
  361. sympy-plots-for-*.tex/
  362. # pdfcomment
  363. *.upa
  364. *.upb
  365. # pythontex
  366. *.pytxcode
  367. pythontex-files-*/
  368. # tcolorbox
  369. *.listing
  370. # thmtools
  371. *.loe
  372. # TikZ & PGF
  373. *.dpth
  374. *.md5
  375. *.auxlock
  376. # titletoc
  377. *.ptc
  378. # todonotes
  379. *.tdo
  380. # vhistory
  381. *.hst
  382. *.ver
  383. # easy-todo
  384. *.lod
  385. # xcolor
  386. *.xcp
  387. # xmpincl
  388. *.xmpi
  389. # xindy
  390. *.xdy
  391. # xypic precompiled matrices and outlines
  392. *.xyc
  393. *.xyd
  394. # endfloat
  395. *.ttt
  396. *.fff
  397. # Latexian
  398. TSWLatexianTemp*
  399. ## Editors:
  400. # WinEdt
  401. *.bak
  402. *.sav
  403. # Texpad
  404. .texpadtmp
  405. # LyX
  406. *.lyx~
  407. # Kile
  408. *.backup
  409. # gummi
  410. .*.swp
  411. # KBibTeX
  412. *~[0-9]*
  413. # TeXnicCenter
  414. *.tps
  415. # auto folder when using emacs and auctex
  416. ./auto/*
  417. *.el
  418. # expex forward references with \gathertags
  419. *-tags.tex
  420. # standalone packages
  421. *.sta
  422. # Makeindex log files
  423. *.lpz
  424. # xwatermark package
  425. *.xwm
  426. # REVTeX puts footnotes in the bibliography by default, unless the nofootinbib
  427. # option is specified. Footnotes are the stored in a file with suffix Notes.bib.
  428. # Uncomment the next line to have this generated file ignored.
  429. #*Notes.bib