Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
2022-08-22 15:04:14 -06:00
addressbook WIP Mobile template: Fix some of apps add buttons 2022-08-22 16:19:23 +02:00
admin WIP Mobile template: Fix some of apps add buttons 2022-08-22 16:19:23 +02:00
api Icon improvements: 2022-08-22 14:58:55 -06:00
calendar Calendar: Changing date using buttons in toolbar did not update sidemenu calendar to match 2022-08-22 15:04:14 -06:00
doc * SAML/Univention: support for Univention SAML IdP for SSO incl. docu 2022-08-04 20:10:23 +02:00
emailadmin
filemanager Drop pixelegg template from addressbook and filemanager 2022-08-12 12:12:15 +02:00
files
home fixing pixelegg less/css files to address images in default/images 2022-07-31 10:49:35 +02:00
importexport fixing pixelegg less/css files to address images in default/images 2022-07-31 10:49:35 +02:00
infolog WIP Mobile template: Fix some of apps add buttons 2022-08-22 16:19:23 +02:00
mail WIP Mobile template: Fix some of apps add buttons 2022-08-22 16:19:23 +02:00
notifications fixing pixelegg less/css files to address images in default/images 2022-07-31 10:49:35 +02:00
pixelegg WIP Mobile template: get nm header fields sorted and get the searchbox to have the rest of available space 2022-08-22 16:41:33 +02:00
preferences WIP Mobile template: Fix some of apps add buttons 2022-08-22 16:19:23 +02:00
resources Drop pixelegg template 2022-08-12 12:20:57 +02:00
saml * SAML/Univention: support for Univention SAML IdP for SSO incl. docu 2022-08-04 20:10:23 +02:00
setup fix installation check to report and verify display_errors=0 as Off 2022-08-12 08:48:44 +02:00
timesheet WIP Mobile template: Fix some of apps add buttons 2022-08-22 16:19:23 +02:00
.gitignore
.htaccess
.travis.yml
about.php
composer.json drop old select/taglist/link incl. Choosen and MagicSuggest 2022-07-12 09:57:24 +02:00
composer.lock drop old select/taglist/link incl. Choosen and MagicSuggest 2022-07-12 09:57:24 +02:00
groupdav.htaccess
groupdav.php
Gruntfile.js coping with new et2-tab-box widget: 2022-08-03 10:57:49 +02:00
header.inc.php.template
index.php
install-cli.php for binaries prefer grunt from node_modules/.bin and for all /usr/local/bin over /usr/bin 2022-05-06 12:48:17 +02:00
json.php
LICENSE.md
login.php fix spelling 2022-08-04 20:03:43 +02:00
logout.php
manifest.json remove removed logo164x164.png from manifest.json 2022-08-02 09:48:54 +02:00
move-images move images from pixelegg to default and drop png or gif, if we have an svg 2022-07-28 17:56:34 +02:00
package-lock.json Bump Shoelace version - it's got some colorpicker improvements I want 2022-08-04 13:41:43 -06:00
package.json Bump Shoelace version - it's got some colorpicker improvements I want 2022-08-04 13:41:43 -06:00
README.md
redirect.php
remote.php
rollup.config.js
SECURITY.md
service-worker.js
share.php
status.php
tsconfig.json
updateGruntfile.php
web-test-runner.config.mjs
webdav.php

EGroupware

Tools Usage
Travis CI runs unit-tests after each commit
Scrutinizer CI scrutinizer runs static analysis on our codebase
BrowserStack manual testing with unusual browser versions or platforms

Default and prefered installation method for EGroupware is via your Linux package manager:

Every other method (including a developer installation by cloning the repo) is way more complicated AND does not include all features, as part's of EGroupware are running in different containers, eg. the push-server!

Installing EGroupware 21.1 via Docker for non-Linux environments or not supported Linux distros:

EGroupware 21.1 can be installed via Docker, in fact the DEB/RPM packages also does that. Instructions on how to run EGroupware in Docker are in our Wiki and in doc/docker subdirectory.

Installing EGroupware development version via Docker:

Deprecated EGroupware development installation:

apt/yum/zypper install nodejs
npm install -g grunt-cli
  • install EGroupware and dependencies
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-cli.php
  • install non-default EGroupware apps by cloning them into your egroupware directory eg.
cd /path/to/your/egroupware
git clone https://github.com/EGroupware/wiki.git

Keeping EGroupware up to date or switch to release branch:

cd /path/to/your/egroupware
./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. 19.1.20200701
  • bugfix: release-branch incl. latest bugfixes eg. 20.1, if you are currently on 20.1.20200710
  • <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.