您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. <div align="center">
  2. <img src="https://github.com/influxframework/design/raw/master/logos/png/bench-logo.png" height="128">
  3. <h2>Bench</h2>
  4. </div>
  5. Bench is a command-line utility that helps you to install, update, and manage multiple sites for InfluxFramework/InfluxERP applications on [*nix systems](https://en.wikipedia.org/wiki/Unix-like) for development and production.
  6. <div align="center">
  7. <a target="_blank" href="https://www.python.org/downloads/" title="Python version">
  8. <img src="https://img.shields.io/badge/python-%3E=_3.7-green.svg">
  9. </a>
  10. <a target="_blank" href="https://app.travis-ci.com/github/influxframework/bench" title="CI Status">
  11. <img src="https://app.travis-ci.com/influxframework/bench.svg?branch=develop">
  12. </a>
  13. <a target="_blank" href="https://pypi.org/project/influxframework-bench" title="PyPI Version">
  14. <img src="https://badge.fury.io/py/influxframework-bench.svg" alt="PyPI version">
  15. </a>
  16. <a target="_blank" title="Platform Compatibility">
  17. <img src="https://img.shields.io/badge/platform-linux%20%7C%20osx-blue">
  18. </a>
  19. <a target="_blank" href="https://app.fossa.com/projects/git%2Bgithub.com%2Finfluxframework%2Fbench?ref=badge_shield" title="FOSSA Status">
  20. <img src="https://app.fossa.com/api/projects/git%2Bgithub.com%2Finfluxframework%2Fbench.svg?type=shield">
  21. </a>
  22. <a target="_blank" href="#LICENSE" title="License: GPLv3">
  23. <img src="https://img.shields.io/badge/License-GPLv3-blue.svg">
  24. </a>
  25. </div>
  26. ## Table of Contents
  27. - [Installation](#installation)
  28. - [Containerized Installation](#containerized-installation)
  29. - [Easy Install Script](#easy-install-script)
  30. - [Manual Installation](#manual-installation)
  31. - [Usage](#basic-usage)
  32. - [Custom Bench commands](#custom-bench-commands)
  33. - [Bench Manager](#bench-manager)
  34. - [Guides](#guides)
  35. - [Resources](#resources)
  36. - [Development](#development)
  37. - [Releases](#releases)
  38. - [License](#license)
  39. ## Installation
  40. A typical bench setup provides two types of environments &mdash; Development and Production.
  41. The setup for each of these installations can be achieved in multiple ways:
  42. - [Containerized Installation](#containerized-installation)
  43. - [Easy Install Script](#easy-install-script)
  44. - [Manual Installation](#manual-installation)
  45. We recommend using either the Docker Installation or the Easy Install Script to setup a Production Environment. For Development, you may choose either of the three methods to setup an instance.
  46. Otherwise, if you are looking to evaluate InfluxERP, you can register for [a free trial on influxerp.com](https://influxerp.com/pricing).
  47. ### Containerized Installation
  48. A InfluxFramework/InfluxERP instance can be setup and replicated easily using [Docker](https://docker.com). The officially supported Docker installation can be used to setup either of both Development and Production environments.
  49. To setup either of the environments, you will need to clone the official docker repository:
  50. ```sh
  51. $ git clone https://github.com/influxframework/influxframework_docker.git
  52. $ cd influxframework_docker
  53. ```
  54. A quick setup guide for both the environments can be found below. For more details, check out the [InfluxFramework/InfluxERP Docker Repository](https://github.com/influxframework/influxframework_docker).
  55. ### Easy Install Script
  56. The Easy Install script should get you going with a InfluxFramework/InfluxERP setup with minimal manual intervention and effort. Since there are a lot of configurations being automatically setup, we recommend executing this script on a fresh server.
  57. **Note:** This script works only on GNU/Linux based server distributions, and has been designed and tested to work on Ubuntu 16.04+, CentOS 7+, and Debian-based systems.
  58. > This script installs Version 12 by default. It is untested with Version 13 and above. Containerized or manual installs are recommended for newer setups.
  59. #### Prerequisites
  60. You need to install the following packages for the script to run:
  61. - ##### Ubuntu and Debian-based Distributions:
  62. ```sh
  63. $ apt install python3-minimal build-essential python3-setuptools
  64. ```
  65. - ##### CentOS and other RPM Distributions:
  66. ```sh
  67. $ dnf groupinstall "Development Tools"
  68. $ dnf install python3
  69. ```
  70. #### Setup
  71. Download the Easy Install script and execute it:
  72. ```sh
  73. $ wget https://raw.githubusercontent.com/influxframework/bench/develop/install.py
  74. $ python3 install.py --production
  75. ```
  76. The script should then prompt you for the MySQL root password and an Administrator password for the InfluxFramework/InfluxERP instance, which will then be saved under `$HOME/passwords.txt` of the user used to setup the instance. This script will then install the required stack, setup bench and a default InfluxERP instance.
  77. When the setup is complete, you will be able to access the system at `http://<your-server-ip>`, wherein you can use the administrator password to login.
  78. #### Troubleshooting
  79. In case the setup fails, the log file is saved under `/tmp/logs/install_bench.log`. You may then:
  80. - Create an Issue in this repository with the log file attached.
  81. - Search for an existing issue or post the log file on the [InfluxFramework/InfluxERP Discuss Forum](https://discuss.influxerp.com/c/bench) with the tag `installation_problem` under "Install/Update" category.
  82. For more information and advanced setup instructions, check out the [Easy Install Documentation](https://github.com/influxframework/bench/blob/develop/docs/easy_install.md).
  83. ### Manual Installation
  84. Some might want to manually setup a bench instance locally for development. To quickly get started on installing bench the hard way, you can follow the guide on [Installing Bench and the InfluxFramework Framework](https://influxframework.com/docs/user/en/installation).
  85. You'll have to set up the system dependencies required for setting up a InfluxFramework Environment. Checkout [docs/installation](https://github.com/influxframework/bench/blob/develop/docs/installation.md) for more information on this. If you've already set up, install bench via pip:
  86. ```sh
  87. $ pip install influxframework-bench
  88. ```
  89. For more extensive distribution-dependent documentation, check out the following guides:
  90. - [Hitchhiker's Guide to Installing InfluxFramework on Linux](https://github.com/influxframework/influxframework/wiki/The-Hitchhiker%27s-Guide-to-Installing-InfluxFramework-on-Linux)
  91. - [Hitchhiker's Guide to Installing InfluxFramework on MacOS](https://github.com/influxframework/bench/wiki/Setting-up-a-Mac-for-InfluxFramework-InfluxERP-Development)
  92. ## Basic Usage
  93. **Note:** Apart from `bench init`, all other bench commands are expected to be run in the respective bench directory.
  94. * Create a new bench:
  95. ```sh
  96. $ bench init [bench-name]
  97. ```
  98. * Add a site under current bench:
  99. ```sh
  100. $ bench new-site [site-name]
  101. ```
  102. - **Optional**: If the database for the site does not reside on localhost or listens on a custom port, you can use the flags `--db-host` to set a custom host and/or `--db-port` to set a custom port.
  103. ```sh
  104. $ bench new-site [site-name] --db-host [custom-db-host-ip] --db-port [custom-db-port]
  105. ```
  106. * Download and add applications to bench:
  107. ```sh
  108. $ bench get-app [app-name] [app-link]
  109. ```
  110. * Install apps on a particular site
  111. ```sh
  112. $ bench --site [site-name] install-app [app-name]
  113. ```
  114. * Start bench (only for development)
  115. ```sh
  116. $ bench start
  117. ```
  118. * Show bench help:
  119. ```sh
  120. $ bench --help
  121. ```
  122. For more in-depth information on commands and their usage, follow [Commands and Usage](https://github.com/influxframework/bench/blob/develop/docs/commands_and_usage.md). As for a consolidated list of bench commands, check out [Bench Usage](https://github.com/influxframework/bench/blob/develop/docs/bench_usage.md).
  123. ## Custom Bench Commands
  124. If you wish to extend the capabilities of bench with your own custom InfluxFramework Application, you may follow [Adding Custom Bench Commands](https://github.com/influxframework/bench/blob/develop/docs/bench_custom_cmd.md).
  125. ## Bench Manager
  126. [Bench Manager](https://github.com/influxframework/bench_manager) is a GUI frontend for Bench with the same functionalties. You can install it by executing the following command:
  127. ```sh
  128. $ bench setup manager
  129. ```
  130. - **Note:** This will create a new site to setup Bench Manager, if you want to set it up on an existing site, run the following commands:
  131. ```sh
  132. $ bench get-app https://github.com/influxframework/bench_manager.git
  133. $ bench --site <sitename> install-app bench_manager
  134. ```
  135. ## Guides
  136. - [Configuring HTTPS](https://influxframework.com/docs/user/en/bench/guides/configuring-https.html)
  137. - [Using Let's Encrypt to setup HTTPS](https://influxframework.com/docs/user/en/bench/guides/lets-encrypt-ssl-setup.html)
  138. - [Diagnosing the Scheduler](https://influxframework.com/docs/user/en/bench/guides/diagnosing-the-scheduler.html)
  139. - [Change Hostname](https://influxframework.com/docs/user/en/bench/guides/adding-custom-domains)
  140. - [Manual Setup](https://influxframework.com/docs/user/en/bench/guides/manual-setup.html)
  141. - [Setup Production](https://influxframework.com/docs/user/en/bench/guides/setup-production.html)
  142. - [Setup Multitenancy](https://influxframework.com/docs/user/en/bench/guides/setup-multitenancy.html)
  143. - [Stopping Production](https://github.com/influxframework/bench/wiki/Stopping-Production-and-starting-Development)
  144. For an exhaustive list of guides, check out [Bench Guides](https://influxframework.com/docs/user/en/bench/guides).
  145. ## Resources
  146. - [Bench Commands Cheat Sheet](https://influxframework.com/docs/user/en/bench/resources/bench-commands-cheatsheet.html)
  147. - [Background Services](https://influxframework.com/docs/user/en/bench/resources/background-services.html)
  148. - [Bench Procfile](https://influxframework.com/docs/user/en/bench/resources/bench-procfile.html)
  149. For an exhaustive list of resources, check out [Bench Resources](https://influxframework.com/docs/user/en/bench/resources).
  150. ## Development
  151. To contribute and develop on the bench CLI tool, clone this repo and create an editable install. In editable mode, you may get the following warning everytime you run a bench command:
  152. WARN: bench is installed in editable mode!
  153. This is not the recommended mode of installation for production. Instead, install the package from PyPI with: `pip install influxframework-bench`
  154. ```sh
  155. $ git clone https://github.com/influxframework/bench ~/bench-repo
  156. $ pip3 install -e ~/bench-repo
  157. $ bench src
  158. /Users/influxframework/bench-repo
  159. ```
  160. To clear up the editable install and switch to a stable version of bench, uninstall via pip and delete the corresponding egg file from the python path.
  161. ```sh
  162. # Delete bench installed in editable install
  163. $ rm -r $(find ~ -name '*.egg-info')
  164. $ pip3 uninstall influxframework-bench
  165. # Install latest released version of bench
  166. $ pip3 install -U influxframework-bench
  167. ```
  168. To confirm the switch, check the output of `bench src`. It should change from something like `$HOME/bench-repo` to `/usr/local/lib/python3.6/dist-packages` and stop the editable install warnings from getting triggered at every command.
  169. ## Releases
  170. Bench's version information can be accessed via `bench.VERSION` in the package's __init__.py file. Eversince the v5.0 release, we've started publishing releases on GitHub, and PyPI.
  171. GitHub: https://github.com/influxframework/bench/releases
  172. PyPI: https://pypi.org/project/influxframework-bench
  173. From v5.3.0, we partially automated the release process using [@semantic-release](.github/workflows/release.yml). Under this new pipeline, we do the following steps to make a release:
  174. 1. Merge `develop` into the `staging` branch
  175. 1. Merge `staging` into the latest stable branch, which is `v5.x` at this point.
  176. This triggers a GitHub Action job that generates a bump commit, drafts and generates a GitHub release, builds a Python package and publishes it to PyPI.
  177. The intermediate `staging` branch exists to mediate the `bench.VERSION` conflict that would arise while merging `develop` and stable. On develop, the version has to be manually updated (for major release changes). The version tag plays a role in deciding when checks have to be made for new Bench releases.
  178. > Note: We may want to kill the convention of separate branches for different version releases of Bench. We don't need to maintain this the way we do for InfluxFramework & InfluxERP. A single branch named `stable` would sustain.
  179. ## License
  180. This repository has been released under the [GNU GPLv3 License](LICENSE).