This repo is no longer maintained. Use the Vagrant Box instead.
- Download and install Virtual Box. Attention! There are known problems with VirtualBox 5.0.2 on Windows 10 hosts and with Windows 10 guests. Some of the problems are fixed in the most recent test build which can be found at https://www.virtualbox.org/wiki/Testbuilds.
- Download and install Vagrant for Windows https://www.vagrantup.com/downloads.html
- Download and install GitHub Desktop for Windows at https://desktop.github.com/
- From now on use Git Shell (on your Desktop) to run all commands since it supports some Linux commands natively, most importantly SSH. This means you won't have to install and set up Putty.
- (Optional) Install a good text editor such as Atom at https://atom.io/
- Clone this repo into a local folder with
git clone https://github.com/frappe/erpnext_vagrant.git erpnext_vagrant
- Start your virtual machine by running
vagrant up
- Connect to your guest system via SSH with
vagrant ssh
- Set
"developer_mode": 1
in/vagrant/frappe-bench/sites/site1.local/site_config.json
, for example by runningvim /vagrant/frappe-bench/sites/site1.local/site_config.json
. When in vim pressi
to insert text. After inserting pressESC
and write:wq
to write and quite the file. More on vim here https://www.linux.com/learn/tutorials/228600-vim-101-a-beginners-guide-to-vim. - Go to your frappe-bench folder with
cd /vagrant/frappe-bench/
and start bench withbench start
- Open your browser on your host system and work on your ERPNExt by browsing to
http://localhost:8080/
orhttp://127.0.0.1:8080