[![Build Status](http://runbot.odoo.com/runbot/badge/flat/1/master.svg)](http://runbot.odoo.com/runbot)
Odoo is a suite of web based open source business apps.
The main Odoo Apps include an Open Source CRM, Website Builder, eCommerce, Warehouse Management, Project Management, Billing & Accounting, Point of Sale, Human Resources, Marketing, Manufacturing, ...
Odoo Apps can be used as stand-alone applications, but they also integrate seamlessly so you get a full-featured Open Source ERP when you install several Apps.
For a standard installation please follow the Setup instructions from the documentation.
To learn the software, we recommend the Odoo eLearning, or Scale-up, the business game. Developers can start with the developer tutorials
./odoo-bin -i base --database odoo --stop-after-init --db_host=127.0.0.1 --db_user default --db_password=secret --db_port 5432
~$ python3
from passlib.context import CryptContext setpw = CryptContext(schemes=['pbkdf2_sha512']) setpw.encrypt('YourNewPassword') Copy the Hash created Ctrl D ~$ sudo su postgres ~$ psql postgres=# \connect Your_Database_Name You are now connected to database "Your_database_Name" as user "postgres" YOurDatabase_Name=# UPDATE res_users SET password='YourCopiedHash' WHERE id=2; YOurDatabase_Name=# \q