Piki is a minimal wiki
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

.gitignore 1.9KB

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