Building a new module for odoo's framework.
Odoo is an all-in-one management software that offers a range of business applications that form a complete suite of enterprise management applications targeting companies of all sizes. Odoo is an all-in-one business software including CRM, website/e-commerce, billing, accounting, manufacturing, warehouse - and project management, and inventory.
$ sudo apt install postgresql
Download .deb file (you must fill a form) https://www.odoo.com/es_ES/page/download and install it.
$ sudo su postgres
$ psql
$ create user odoo password '12345';
$ create database odoo with owner odoo;
$ grant all privileges on database odoo to odoo;
The /etc/odoo/odoo.config (create if it doesn't exist) should be like this:
[options]
; This is the password that allows database operations:
; admin_passwd = admin
db_host = localhost
db_port = 5432
db_user = odoo
db_password = 12345
;addons_path = /usr/lib/python3/dist-packages/odoo/addons
$ sudo service postgresql restart
$ sudo service odoo restart
Clone this repo and add it to addons_path (if you follow the instructons, It may be /usr/lib/python3/dist-packages/odoo/addons). After that, restarting odoo's servicies.
Enter in localhost:8069 from a browser. The first time it a little bit slow.
When odoo's logo show up, it's ready!. Well, the credentials are:
User: admin
Pass: admin