Last active
February 16, 2018 06:23
-
-
Save ashish-greycube/3b6bf6f4995576214e3e0267ebc9ba5c to your computer and use it in GitHub Desktop.
ERPNext installation steps on fresh ubuntu server for master branch in develop mode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get update | |
apt-get install python-minimal | |
apt-get install build-essential python-setuptools | |
adduser frappe | |
usermod -aG sudo frappe | |
su - frappe | |
wget https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py | |
sudo python install.py --production | |
cd frappe-bench | |
Stopping Production and starting Development | |
rm config/supervisor.conf | |
rm config/nginx.conf | |
sudo service nginx stop | |
sudo service supervisor stop | |
bench setup procfile | |
bench start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment