There is a lot of artickles about this, but i did not find step by step guide. I have installed bazaar and only want to get latest source code version of openERP v7...
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project
- MRP
This question has been flagged
If possible, you should skip the launchpad version and head over directly to github. Anyway, here is what I do (as the user I want the code under).
Configure bazaar for use if not done already:
- bzr whoami "Nemanja Dragovic <nemanja@someaddress.com>"
Then:
- mkdir openerp (for example in your home directory)
- cd openerp
- bzr branch lp:openobject-server/7.0 server
When this is done, also get the addons and web modules:
- bzr branch lp:openobject-addons/7.0 addons
- bzr branch lp:openobject-web/7.0 web
------------------------
Alternatively, if using github, use these steps (assuming git has been installed):
- mkdir openerp
- cd openerp
- git clone https://github.com/odoo/odoo.git odoo
When this is done:
- cd odoo
- git checkout -r origin/7.0
And you should be on the right version as well. No need for seperate downloads of web/addons, its all included in the git repository.
Hope this helps!
OpenERP has moved from bzr/launchpad to git/github. It can be that the code is still available on launchpad but if you start right now I strongly suggest to get started with git & download the code from github. I am a novice with this myself, so I can provide only basic info but that might get you going at least. I assume you are on a linux machine. The followint commands are working for ubuntu & debian
- sudo apt-get install git
- cd /path/to/folder *
- sudo git clone --branch 7.0 https://github.com/odoo/odoo or sudo git clone --branch 7.0 https://github.com/OCA/OCB **
* wherever you want to download the sourcedode to. If you want to run Odoo on this machine this would be inside of /opt. But I suggest to follow a howto for an installation because there is a little more to it then downloading the source code
** this 'clones' the sourcecode into a local repository. If you want to study the code that might be sufficient
I guess it would be a good idea to study how to get around with git a little
http://en.wikipedia.org/wiki/Git_%28software%29 or http://git-scm.com/book or https://help.github.com/ might be a way to start
You were 2 minutes earlier, but your explanation is very nice!
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
1
Feb 17
|
4582 | ||
|
1
Oct 15
|
6266 | ||
|
1
Mar 15
|
6554 | ||
|
1
Jul 15
|
7158 | ||
|
2
Mar 15
|
5702 |