Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
ralf a2f1c8a67e fix typo prefer(r)ed_username and support config-values with at least one underscore in it like "preferred_username" 2024-07-19 15:15:09 +02:00
addressbook
admin
api * Api/Auth/OpenIDConnect: allow to specify which JWT payload attribute to use and a regular expression to extract username from it 2024-07-19 14:10:32 +02:00
calendar * eSync/Calendar: new preference how many days to sync back, if client specifies no limit / all, default is 365 2024-07-16 09:14:08 +02:00
doc fix TypeError 2024-07-15 07:46:13 +02:00
emailadmin
filemanager
files
home
importexport
infolog
kdots Bigger border on context menu 2024-07-17 10:10:24 -06:00
mail implement new action attribute color, to specify a color for the caption, instead of the default color 2024-07-16 20:37:56 +02:00
notifications
pixelegg Bigger border on context menu 2024-07-17 10:10:24 -06:00
preferences
resources
saml
setup fix typo prefer(r)ed_username and support config-values with at least one underscore in it like "preferred_username" 2024-07-19 15:15:09 +02:00
timesheet
.gitignore
.htaccess
.travis.yml
Gruntfile.js restored Gruntfile.js from 23.1, but removed dhtmlx-menu parts 2024-07-18 17:16:06 +02:00
LICENSE.md
README.md
SECURITY.md
about.php
composer.json
composer.lock
groupdav.htaccess
groupdav.php
header.inc.php.template
index.php
install-cli.php
json.php
login.php
logout.php
manifest.json
move-images
package-lock.json
package.json
redirect.php
remote.php
rollup.config.js
service-worker.js
share.php
status.php
tsconfig.json
updateGruntfile.php Kdots style work 2024-07-15 08:24:47 -06:00
web-test-runner.config.mjs
webdav.php

README.md

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 23.1 via Docker for non-Linux environments or not supported Linux distros:

EGroupware 23.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.