odoo/README.md

58 lines
2.1 KiB
Markdown
Raw Normal View History

[![Build Status](http://runbot.odoo.com/runbot/badge/default/1/8.0.svg)](http://runbot.odoo.com/runbot)
2014-06-11 12:53:59 +00:00
Odoo
----
2014-08-12 07:15:51 +00:00
Odoo is a suite of web based open source business apps.
2014-05-15 08:43:02 +00:00
2014-10-13 09:05:17 +00:00
The main Odoo Apps include an <a href="https://www.odoo.com/page/crm">Open Source CRM</a>, <a href="https://www.odoo.com/page/website-builder">Website Builder</a>, <a href="https://www.odoo.com/page/e-commerce">eCommerce</a>, <a href="https://www.odoo.com/page/project-management">Project Management</a>, <a href="https://www.odoo.com/page/accounting">Billing & Accounting</a>, <a href="https://www.odoo.com/page/point-of-sale">Point of Sale</a>, <a href="https://www.odoo.com/page/employees">Human Resources</a>, Marketing, Manufacturing, Purchase Management, ...
Odoo Apps can be used as stand-alone applications, but they also integrate seamlessly so you get
a full-featured <a href="https://www.odoo.com">Open Source ERP</a> when you install several Apps.
2014-05-16 06:43:08 +00:00
2014-06-06 09:39:54 +00:00
Getting started with Odoo development
2014-05-29 16:51:59 +00:00
--------------------------------------
2014-08-12 06:52:14 +00:00
If you are a developer type the following command at your terminal:
wget -O- https://raw.githubusercontent.com/odoo/odoo/master/odoo.py | python
2014-09-23 16:41:42 +00:00
Then follow <a href="https://doc.odoo.com/trunk/server/howto/howto_website/">the developer tutorial</a>
2014-05-15 08:43:02 +00:00
Packages, tarballs and installers
---------------------------------
2014-05-15 08:43:02 +00:00
* Debian packages
2014-05-15 08:43:02 +00:00
Add this apt repository to your /etc/apt/sources.list file
2014-05-15 08:43:02 +00:00
deb http://nightly.odoo.com/8.0/nightly/deb/ ./
2014-05-15 08:43:02 +00:00
Then type:
2014-05-15 08:43:02 +00:00
$ sudo apt-get update
2014-09-23 16:41:42 +00:00
$ sudo apt-get install odoo
2014-05-15 08:43:02 +00:00
2014-09-16 13:05:34 +00:00
If you plan to use Odoo with a local database, please make sure to install PostgreSQL *before* installing the Odoo Debian package.
2014-09-23 16:41:42 +00:00
* <a href="http://nightly.odoo.com/8.0/nightly/src/">Source tarballs</a>
2014-09-23 16:41:42 +00:00
* <a href="http://nightly.odoo.com/8.0/nightly/exe/">Windows installer</a>
2014-09-16 13:05:34 +00:00
2014-09-23 16:41:42 +00:00
* <a href="http://nightly.odoo.com/8.0/nightly/rpm/">RPM package</a>
2014-05-29 16:51:59 +00:00
For Odoo employees
------------------
To add the odoo-dev remote use this command:
$ ./odoo.py setup_git_dev
To fetch odoo merge pull requests refs use this command:
$ ./odoo.py setup_git_review
2014-05-16 06:43:08 +00:00