Vagrant Setup for Odoo 9 on Ubuntu 16.04
-
Download and install Virtual Box
-
Download and install Vagrant
-
Clone this repo
git clone http://github.com/kamaxeon/odoo-vagrant.git
- Start virtual machine
cd odoo-vagrant
vagrant up
- Login in the virtual machine, and start odoo
vagrant ssh
~/odoo-dev/odoo/odoo.py -d v9dev
- Open your browser and go http://localhost:8069 (admin:admin)
src/my_addons is mapped to /home/vagrant/my_addons, you can write your modules in this directory
If you want manage the postgresql server from your desktop, you only have to connect to localhost, username and password is 'admin'
- Fork it
- Create your feature branch (
$ git checkout -b my-new-feature
) - Commit your changes (
$ git commit -am 'Add some feature'
) - Push to the branch (
$ git push origin my-new-feature
) - Create new Pull Request