Piki is a minimal wiki
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. # piki
  2. data/media
  3. data/pages
  4. data/static
  5. db.sqlite3
  6. config.py
  7. # ---> Python
  8. # Byte-compiled / optimized / DLL files
  9. __pycache__/
  10. *.py[cod]
  11. *$py.class
  12. # C extensions
  13. *.so
  14. # Distribution / packaging
  15. .Python
  16. build/
  17. develop-eggs/
  18. dist/
  19. downloads/
  20. eggs/
  21. .eggs/
  22. lib/
  23. lib64/
  24. parts/
  25. sdist/
  26. var/
  27. wheels/
  28. *.egg-info/
  29. .installed.cfg
  30. *.egg
  31. MANIFEST
  32. # PyInstaller
  33. # Usually these files are written by a python script from a template
  34. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  35. *.manifest
  36. *.spec
  37. # Installer logs
  38. pip-log.txt
  39. pip-delete-this-directory.txt
  40. # Unit test / coverage reports
  41. htmlcov/
  42. .tox/
  43. .nox/
  44. .coverage
  45. .coverage.*
  46. .cache
  47. nosetests.xml
  48. coverage.xml
  49. *.cover
  50. .hypothesis/
  51. .pytest_cache/
  52. # Translations
  53. *.mo
  54. *.pot
  55. # Django stuff:
  56. *.log
  57. local_settings.py
  58. db.sqlite3
  59. # Flask stuff:
  60. instance/
  61. .webassets-cache
  62. # Scrapy stuff:
  63. .scrapy
  64. # Sphinx documentation
  65. docs/_build/
  66. # PyBuilder
  67. target/
  68. # Jupyter Notebook
  69. .ipynb_checkpoints
  70. # IPython
  71. profile_default/
  72. ipython_config.py
  73. # pyenv
  74. .python-version
  75. # celery beat schedule file
  76. celerybeat-schedule
  77. # SageMath parsed files
  78. *.sage.py
  79. # Environments
  80. .env
  81. .venv
  82. env/
  83. venv/
  84. ENV/
  85. env.bak/
  86. venv.bak/
  87. # Spyder project settings
  88. .spyderproject
  89. .spyproject
  90. # Rope project settings
  91. .ropeproject
  92. # mkdocs documentation
  93. /site
  94. # mypy
  95. .mypy_cache/
  96. .dmypy.json
  97. dmypy.json
  98. # Pyre type checker
  99. .pyre/
  100. # ---> VirtualEnv
  101. # Virtualenv
  102. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  103. .Python
  104. [Bb]in
  105. [Ii]nclude
  106. [Ll]ib
  107. [Ll]ib64
  108. [Ll]ocal
  109. [Ss]cripts
  110. pyvenv.cfg
  111. .venv
  112. pip-selfcheck.json
  113. # ---> Backup
  114. *.bak
  115. *.gho
  116. *.ori
  117. *.orig
  118. *.tmp
  119. # ---> Linux
  120. *~
  121. # temporary files which can be created if a process still has a handle open of a deleted file
  122. .fuse_hidden*
  123. # KDE directory preferences
  124. .directory
  125. # Linux trash folder which might appear on any partition or disk
  126. .Trash-*
  127. # .nfs files are created when an open file is removed but is still being accessed
  128. .nfs*