On 10/25/2011 07:44 PM, Carlos Almeida wrote: > How can we get the 6.1 server and web client code through bazaar? > > I mean: bzr branch lp:???
As you have normally found out last week during the review sprint, you can now download the source and setup a minimal OpenERP development environment for trunk/6.1 by executing the following commands in a terminal: $ mkdir source $ cd source $ bzr cat -d lp:~openerp-dev/openerp-tools/trunk setup.sh | sh $ make init-trunk Then start the server with: $ make server If you want to do everything manually, read the Makefile that is downloaded by the above commands to learn all the gory details. For example these are the LP URLs of the 6.1/trunk branches: web: lp:openerp-web/trunk server: lp:openobject-server/trunk addons: lp:openobject-addons/trunk Another important thing if you do the setup manually is to add the addons directory from the "web" project into the "addons_path" of your server (you can make it a comma-separated list). Otherwise the embedded web server will not work, and you will see "web: module not found" in the log. _______________________________________________ Mailing list: https://launchpad.net/~openerp-community Post to : [email protected] Unsubscribe : https://launchpad.net/~openerp-community More help : https://help.launchpad.net/ListHelp

