Smile-SA / odoo_addons

Odoo addons developed by Smile

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Smile addons for Odoo

This repository contains a collection of Odoo modules.

Requirements

  • Odoo 17.0

How to documentate your module

Requirements

You need to install package python-docutils:

apt install python3-docutils

Write documentation

At the root of your module, define a file README.md.

As soon as README.md is finished, run the following command at the root of the module:

rst2html README.rst static/description/index.html
sed -i 's/static\/description\///g' static/description/index.html

To update index.html of all modules, run the following command at the root of the repository:

for module in $(echo smile_*)
do
    if [ -f "$module"/README.rst ]
    then
        rst2html "$module"/README.rst "$module"/static/description/index.html
        sed -i 's/static\/description\///g' "$module"/static/description/index.html
    fi
done

About

Odoo addons developed by Smile

License:GNU Affero General Public License v3.0


Languages

Language:Python 67.7%Language:HTML 26.0%Language:JavaScript 6.1%Language:Dockerfile 0.3%