documentation: remove CONTRIBUTING and migrate its content in the doc

This commit is contained in:
2019-08-12 10:59:21 +02:00
parent 782a763046
commit 0616597bf2
5 changed files with 167 additions and 107 deletions

8
doc/misc/helpers.rst Normal file
View File

@ -0,0 +1,8 @@
Commandes utiles
================
* Appliquer le header de licence sur tout le projet
.. code-block:: bash
for f in $(find . -name "*.py" ! -path "*migration*" ! -path "./env/*" ! -path "./doc/*"); do cat ./doc/header "$f" > /tmp/temp && mv /tmp/temp "$f"; done