From f02073a24c1fbc0e57182ebffb05bca37a817bb2 Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Fri, 3 Jan 2020 13:04:23 +0900 Subject: [PATCH] Move description of CLI options to Wiki --- README.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/README.md b/README.md index 1afcd02a5..75c714084 100644 --- a/README.md +++ b/README.md @@ -31,20 +31,6 @@ GitBucket requires **Java8**. You have to install it, if it is not already insta 1. Download the latest **gitbucket.war** from [the releases page](https://github.com/gitbucket/gitbucket/releases) and run it by `java -jar gitbucket.war`. 2. Go to `http://[hostname]:8080/` and log in with ID: **root** / Pass: **root**. -You can specify following options: - -- `--port=[NUMBER]` -- `--prefix=[CONTEXTPATH]` -- `--host=[HOSTNAME]` -- `--gitbucket.home=[DATA_DIR]` -- `--temp_dir=[TEMP_DIR]` -- `--max_file_size=[MAX_FILE_SIZE]` -- `--upload_timeout=[MAX_UPLOAD_TIMEOUT]` - -`TEMP_DIR` is used as the [temporary directory for the jetty application context](https://www.eclipse.org/jetty/documentation/9.3.x/ref-temporary-directories.html). This is the directory into which the `gitbucket.war` file is unpacked, the source files are compiled, etc. If given this parameter **must** match the path of an existing directory or the application will quit reporting an error; if not given the path used will be a `tmp` directory inside the gitbucket home. - -`MAX_FILE_SIZE` is the max file size in bytes for upload files *( default is 3 MB -> 3 x 1024 x 1024 )*. - You can also deploy `gitbucket.war` to a servlet container which supports Servlet 3.0 (like Jetty, Tomcat, JBoss, etc) For more information about installation on Mac or Windows Server (with IIS), or configuration of Apache or Nginx and also integration with other tools or services such as Jenkins or Slack, see [Wiki](https://github.com/gitbucket/gitbucket/wiki).