Julien Fastré 09578a775c
Update documentation to explain use of EXISTS in SQL queries
Added an explanatory section to the "exports.rst" doc to clarify why to use an EXISTS subquery instead of a JOIN clause in SQL queries involving many-to-* relationships. This explanation includes sample SQL queries and results to illustrate the potential issue of duplicates with JOIN and count, and how EXISTS can help avoid this issue. Also updated the ".editorconfig" file for .rst files.
2024-03-06 12:34:36 +01:00
..

Chill documentation

Documentation of the Chill software.

The compiled documentation may be read at http://docs.chill.social

Compilation into HTML

To compile this documentation :

  1. Install sphinx-doc
            $ virtualenv .venv # creation of the virtual env (only the first time)
            $ source .venv/bin/activate # activate the virtual env
    (.venv) $ pip install -r requirements.txt
    
  2. Install submodules : $ git submodule update --init;
  3. run make html from the root directory
  4. The base file is located on build/html/index.html
    $ cd build/html
    $ python -m http.server 8888 # will serve the site on the port 8888
    

Contribute

Issue tracker : https://gitlab.com/Chill-Projet/chill-bundles/-/issues

Licence

This documentation is available under the GNU Free Documentation Licence.