indaclouds.fr

Some tips when I take time to write them down.

posts Articles


  • Tue 07 February 2017
  • posts

Part 1 - Setup the environment

Part 1 - Setup the environment Part 2 - Create an odoo addon and install it Part 3 - Build a docker image Part 4 - Use Gitlab CI to build our docker image Part 5 - Use Gitlab to test and deploy our docker image This post is the first part of a serie …

  • Sun 29 January 2017
  • posts

Install OCA modules with pip

In a previous post, I explained how to build an addon path quickly. In fact, thanks to Acsone guys, there is a much better way to install OCA modules. setuptools-odoo is a tool that allow packaging an Odoo module as standard python package installable with pip. OCA is using this …

  • Thu 19 January 2017
  • posts

Transmission unreachable when booting on Raspbian

I installed Transmission a long time ago on my Raspberry Pi and couldn't figure out why each time I rebooted my Raspberry Pi I was forced to restart transmission-daemon otherwise Transmission web interface wasn't reachable. Because transmission-daemon isn't logging to a file by default, I had to search how to …

  • Wed 18 January 2017
  • posts

Build Odoo addons path quickly

EDIT: Better way to add OCA modules to an Odoo installation When you have a lot of Odoo modules you want to work with, you have to add their parents folders in the addons path to allow Odoo knows about them. This is what my addons folder looks like: % tree …

  • Tue 30 August 2016
  • posts

Odoo with Docker

I started working with Odoo a few weeks ago. Even if its written in Python, you can't install odoo with pip, at least not from pypi. So you have to clone the Github repository, install python dependencies, install PostgreSQL et configure Odoo to hit the database. Not really a big …