2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-22 20:19:01 +00:00
bench/README.md

192 lines
6.7 KiB
Markdown
Raw Normal View History

<div align="center">
<img src="https://github.com/frappe/design/blob/master/logos/bench-logo.svg" height="128">
<h2>Frappe Bench</h2>
</div>
2016-09-22 10:21:15 +00:00
[![Build Status](https://travis-ci.org/frappe/bench.svg?branch=master)](https://travis-ci.org/frappe/bench)
2014-07-15 09:17:32 +00:00
2018-04-09 11:24:53 +00:00
The bench is a command-line utility that helps you to install apps, manage multiple sites and update Frappe / ERPNext apps on */nix (CentOS, Debian, Ubuntu, etc) for development and production. Bench will also create nginx and supervisor config files, setup backups and much more.
2016-09-22 10:33:52 +00:00
If you are using on a VPS make sure it has >= 1Gb of RAM or has swap setup properly.
2014-07-25 06:00:47 +00:00
2016-04-26 07:43:46 +00:00
To do this install, you must have basic information on how Linux works and should be able to use the command-line. If you are looking easier ways to get started and evaluate ERPNext, [download the Virtual Machine](https://erpnext.com/download) or take [a free trial on erpnext.com](https://erpnext.com/pricing).
2014-07-25 06:00:47 +00:00
2016-09-22 10:28:16 +00:00
If you have questions, please ask them on the [forum](https://discuss.erpnext.com/).
2014-07-15 09:17:32 +00:00
2016-09-22 10:21:15 +00:00
## Installation
2014-07-15 05:48:04 +00:00
2016-09-22 10:21:15 +00:00
## Manual Install
To manually install frappe/erpnext here are the steps
#### 1. Install Pre-requisites
- Python 2.7
- MariaDB 10+
- Nginx (for production)
- Nodejs
- Redis
- cron (crontab is required)
- wkhtmltopdf with patched Qt (for pdf generation)
2016-09-22 10:21:15 +00:00
#### 2. Install Bench
Install bench as a *non root* user,
git clone https://github.com/frappe/bench bench-repo
pip install --user -e bench-repo
2016-09-22 10:21:15 +00:00
Note: Please do not remove the bench directory the above commands will create
#### Basic Usage
* Create a new bench
The init command will create a bench directory with frappe framework
installed. It will be setup for periodic backups and auto updates once
a day.
bench init frappe-bench && cd frappe-bench
* Add a site
2016-09-22 10:21:15 +00:00
Frappe apps are run by frappe sites and you will have to create at least one
site. The new-site command allows you to do that.
2016-08-01 05:44:01 +00:00
2016-09-22 10:21:15 +00:00
bench new-site site1.local
* Add apps
The get-app command gets remote frappe apps from a remote git repository and installs them. Example: [erpnext](https://github.com/frappe/erpnext)
bench get-app erpnext https://github.com/frappe/erpnext
* Install apps
2016-09-22 10:21:15 +00:00
To install an app on your new site, use the bench `install-app` command.
2016-09-22 10:21:15 +00:00
bench --site site1.local install-app erpnext
2016-09-22 10:21:15 +00:00
* Start bench
To start using the bench, use the `bench start` command
bench start
To login to Frappe / ERPNext, open your browser and go to `[your-external-ip]:8000`, probably `localhost:8000`
2016-09-22 10:21:15 +00:00
The default username is "Administrator" and password is what you set when you created the new site.
2016-09-22 10:21:15 +00:00
---
## Easy Install
2016-08-01 05:44:01 +00:00
2016-09-22 10:28:16 +00:00
- This is an opinionated setup so it is best to setup on a blank server.
2018-04-09 11:24:53 +00:00
- Works on Ubuntu 16.04, CentOS 7+, Debian 8+
2016-09-22 10:28:16 +00:00
- You may have to install Python 2.7 (eg on Ubuntu 16.04+) by running `apt-get install python-minimal`
2017-08-03 11:04:18 +00:00
- You may also have to install build-essential and python-setuptools by running `apt-get install build-essential python-setuptools`
2016-09-22 10:28:16 +00:00
- This script will install the pre-requisites, install bench and setup an ERPNext site
- Passwords for Frappe Administrator and MariaDB (root) will be asked
- MariaDB (root) password may be `password` on a fresh server
2016-09-22 10:28:16 +00:00
- You can then login as **Administrator** with the Administrator password
- If you find any problems, post them on the forum: [https://discuss.erpnext.com](https://discuss.erpnext.com)
2016-08-01 05:44:01 +00:00
2014-07-25 06:00:47 +00:00
Open your Terminal and enter:
2016-09-22 10:21:15 +00:00
#### 1. Download the install script
2016-10-13 07:43:43 +00:00
For Linux:
2016-05-16 04:57:49 +00:00
2016-08-01 05:44:01 +00:00
wget https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py
2016-05-16 04:57:49 +00:00
2016-10-13 07:43:43 +00:00
For Mac OSX:
Install X Code (from App store) and HomeBrew (http://brew.sh/) first
2016-06-28 08:44:24 +00:00
2016-08-01 05:44:01 +00:00
brew install python
brew install git
Download the Script
2016-08-01 05:44:01 +00:00
curl "https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py" -o install.py
2016-09-22 10:21:15 +00:00
#### 2. Run the install script
2016-10-13 07:43:43 +00:00
If you are on a fresh server and logged in as root, use --user flag to create a user and install using that user
python install.py --develop --user frappe
For developer setup:
2016-09-22 10:21:15 +00:00
2016-08-01 05:44:01 +00:00
sudo python install.py --develop
2016-09-22 10:21:15 +00:00
For production:
2016-08-01 05:44:01 +00:00
sudo python install.py --production
2016-09-22 10:21:15 +00:00
#### What will this script do?
2016-07-18 04:47:15 +00:00
2016-09-22 10:21:15 +00:00
- Install all the pre-requisites
- Install the command line `bench`
- Create a new bench (a folder that will contain your entire frappe/erpnext setup)
- Create a new ERPNext site on the bench
2016-07-18 04:47:15 +00:00
2016-09-22 10:21:15 +00:00
#### How do I start ERPNext
2016-07-18 04:47:15 +00:00
2016-09-22 10:21:15 +00:00
1. For development: Go to your bench folder (`frappe-bench` by default) and start the bench with `bench start`
2018-01-16 18:31:57 +00:00
2. For production: Your process will be setup and managed by `nginx` and `supervisor`. [Setup Production](https://frappe.io/docs/user/en/bench/guides/setup-production.html)
2016-03-23 07:51:46 +00:00
2016-09-22 10:21:15 +00:00
---
2016-05-16 04:57:49 +00:00
## Docker Install - For Developers (beta)
1. For developer setup, you can also use the official [Frappé Docker](https://github.com/frappe/frappe_docker/).
2. The app, mariadb and redis run on individual containers
3. This setup supports multi-tenancy and exposes the frappe-bench volume as a external storage.
4. For more details, [read the instructions on the Frappé Docker README](https://github.com/frappe/frappe_docker/)
2016-09-22 10:21:15 +00:00
Help
====
2016-03-23 07:51:46 +00:00
2016-09-22 10:21:15 +00:00
For bench help, you can type
2016-08-01 05:44:01 +00:00
2016-09-22 10:21:15 +00:00
bench --help
2014-07-15 05:48:04 +00:00
2014-07-16 08:39:16 +00:00
Updating
========
To manually update the bench, run `bench update` to update all the apps, run
patches, build JS and CSS files and restart supervisor (if configured to).
You can also run the parts of the bench selectively.
`bench update --pull` will only pull changes in the apps
2014-07-16 08:41:50 +00:00
2014-07-16 08:39:16 +00:00
`bench update --patch` will only run database migrations in the apps
2014-07-16 08:41:50 +00:00
2014-07-16 08:39:16 +00:00
`bench update --build` will only build JS and CSS files for the bench
2014-07-16 08:41:50 +00:00
2014-07-16 08:39:16 +00:00
`bench update --bench` will only update the bench utility (this project)
2016-05-18 12:02:51 +00:00
`bench update --requirements` will only update dependencies (python packages) for the apps installed
2016-04-26 07:43:46 +00:00
Guides
=======
2018-01-16 18:31:57 +00:00
- [Configuring HTTPS](https://frappe.io/docs/user/en/bench/guides/configuring-https.html)
- [Using Let's Encrypt to setup HTTPS](https://frappe.io/docs/user/en/bench/guides/lets-encrypt-ssl-setup.html)
- [Diagnosing the Scheduler](https://frappe.io/docs/user/en/bench/guides/diagnosing-the-scheduler.html)
- [Change Hostname](https://frappe.io/docs/user/en/bench/guides/adding-custom-domains)
- [Manual Setup](https://frappe.io/docs/user/en/bench/guides/manual-setup.html)
- [Setup Production](https://frappe.io/docs/user/en/bench/guides/setup-production.html)
- [Setup Multitenancy](https://frappe.io/docs/user/en/bench/guides/setup-multitenancy.html)
- [Stopping Production](https://github.com/frappe/bench/wiki/Stopping-Production-and-starting-Development)
2014-07-16 08:39:16 +00:00
2014-07-21 11:18:41 +00:00
2016-04-26 07:43:46 +00:00
Resources
=======
2014-07-21 11:18:41 +00:00
2018-01-16 18:33:24 +00:00
- [Background Services](https://frappe.io/docs/user/en/bench/resources/background-services.html)
- [Bench Commands Cheat Sheet](https://frappe.io/docs/user/en/bench/resources/bench-commands-cheatsheet.html)
- [Bench Procfile](https://frappe.io/docs/user/en/bench/resources/bench-procfile.html)