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

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