Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 753 Bytes

File metadata and controls

27 lines (24 loc) · 753 Bytes

Odoo dev setup

Project setup

  • First setup the project (cloning may take some time) You’ll need to do this only once.
./setup
  • Once everything is set up, you can start Odoo using the utility script
./run # internally calls docker-compose

Done. Odoo now runs on localhost:8069

Utility script

  • When needing to restart the odoo server e.g.: after some changes, just restart odoo using the utility script:
./run -m <module_name> # reload module

There is no need to manually shut down the docker container. The utility script will take care of that.

Script details

To get more information about the run script, do:

./run --help