odoo/README.md

53 lines
1.4 KiB
Markdown
Raw Normal View History

Odoo
----
Odoo is a suite of web based open source business apps. More info at http://www.odoo.com
2014-05-15 08:43:02 +00:00
The easiest way to play with it is the <a href="https://www.odoo.com/page/start">Odoo free trial</a>, email registration is NOT required, use the "skip this step" link on the registration page to skip it.
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-05-29 16:51:59 +00:00
If you are a developer type the following command at your terminal [1]:
wget -O- https://raw.githubusercontent.com/odoo/odoo/master/odoo.py | python
2014-05-29 16:51:59 +00:00
Then follow <a href="https://doc.openerp.com/trunk/server/howto/howto_website/">the developer tutorial</a>
2014-05-29 16:51:59 +00:00
[1] You may want to check the content of the <a href="https://raw.githubusercontent.com/odoo/odoo/master/odoo.py">odoo.py file</a> before executing it.
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.openerp.com/8.0/deb/ ./
2014-05-15 08:43:02 +00:00
Then type:
2014-05-15 08:43:02 +00:00
$ sudo apt-get update
$ sudo apt-get install odoo
2014-05-15 08:43:02 +00:00
2014-05-29 16:51:59 +00:00
* <a href="http://nightly.openerp.com/">Source tarballs</a>
2014-05-29 16:51:59 +00:00
* <a href="http://nightly.openerp.com/">Windows installer</a>
2014-05-29 16:51:59 +00:00
* <a href="http://nightly.openerp.com/">RPM package</a>
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