mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
Update README.md
This commit is contained in:
parent
08200bd99c
commit
6d9858113e
44
README.md
44
README.md
@ -13,17 +13,37 @@
|
|||||||
[switch to 17.1 branch](https://github.com/EGroupware/egroupware/tree/17.1) and follow instructions there
|
[switch to 17.1 branch](https://github.com/EGroupware/egroupware/tree/17.1) and follow instructions there
|
||||||
|
|
||||||
### Installing EGroupware development version:
|
### Installing EGroupware development version:
|
||||||
* cd /path/to/your/docroot
|
|
||||||
* git clone https://github.com/EGroupware/egroupware.git # or git@github.com:EGroupware/egroupware.git for ssh
|
|
||||||
* cd egroupware
|
|
||||||
* install composer.phar from https://getcomposer.org/download/
|
* install composer.phar from https://getcomposer.org/download/
|
||||||
* install myrepos (mr) from https://myrepos.branchable.com/ or your distribution package manager
|
* optional: for minified JavaScript and CSS install nodejs and grunt
|
||||||
* add a line /path/to/egroupware/.mrconfig to your ~/.mrtrust, to allow running composer.phar and git clone
|
```
|
||||||
* mr up
|
apt/yum/zypper install nodejs
|
||||||
* enable further / non-default EGroupware apps by uncommenting them in .mrconfig and run mr up
|
npm install -g grunt-cli
|
||||||
|
```
|
||||||
|
* install EGroupware and dependencies
|
||||||
|
```
|
||||||
|
cd /path/to/your/docroot
|
||||||
|
git clone -b 17.1 https://github.com/EGroupware/egroupware.git # or git@github.com:EGroupware/egroupware.git for ssh
|
||||||
|
cd egroupware
|
||||||
|
./install-cli.php
|
||||||
|
```
|
||||||
|
* install further EGroupware apps by cloning them into your egroupware directory eg.
|
||||||
|
```
|
||||||
|
cd /path/to/your/egroupware
|
||||||
|
git clone -b 17.1 https://github.com/EGroupware/registration.git
|
||||||
|
```
|
||||||
* continue installation at http://localhost/egroupware/setup/
|
* continue installation at http://localhost/egroupware/setup/
|
||||||
* to get minified JavaScript and CSS you need to install nodejs and grunt, if you have not already done so
|
|
||||||
* install nodejs from your distribution package manager
|
### Keeping EGroupware up to date or switch to release branch:
|
||||||
* npm install -g grunt-cli # installs grunt command globally, if you have not already done so
|
```
|
||||||
* npm install # installs required npm/grunt modules into node_modules/ dir
|
cd /path/to/your/egroupware
|
||||||
* run grunt manually after every update, or better uncomment grunt steps in .mrconfig
|
./install-cli.php [<change-channel>]
|
||||||
|
setup/setup-cli.php # will tell you if a schema-update is necessary
|
||||||
|
```
|
||||||
|
install-cli.php supports the following "channels":
|
||||||
|
- release: taged maintenance releases only eg. 17.1.20190222
|
||||||
|
- bugfix: release-branch incl. latest bugfixes eg. 17.1, if you are currently on 17.1.20190222
|
||||||
|
- \<branch\>: switch to given branch
|
||||||
|
- master: latest development for next release
|
||||||
|
To change the channel, call install-cli.php <channel-to-update-to>.
|
||||||
|
|
||||||
|
For further instalation instructions see our wiki.
|
||||||
|
Loading…
Reference in New Issue
Block a user