Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
nathan 8a2b717c51 Fix some type issues to make everything play more nicely together
(Not complaining about things from parent classes being missing, mostly)
2021-08-27 11:21:40 -06:00
addressbook Fix broken opening a contact in mobile theme 2021-07-26 14:52:01 +02:00
admin
api Fix some type issues to make everything play more nicely together 2021-08-27 11:21:40 -06:00
calendar * Calendar: Activate links in location & description in event tooltip 2021-08-12 08:57:15 -06:00
doc update jquery-ui to 1.12.1 2021-08-11 15:38:13 +02:00
emailadmin
filemanager
files
home
importexport
infolog Merge branch 'master' into web-components 2021-08-23 15:41:27 -06:00
lit
mail Take all addresses in the mail header when integrating mail to another app, e.g. Calendar. 2021-08-13 10:52:39 +02:00
notifications
pixelegg Activate touch plugin on mobile framework 2021-08-12 14:57:47 +02:00
preferences
resources
saml
setup * Setup: support uninstalling automatic installed apps (no more reinstalling next update) 2021-08-03 18:53:05 +02:00
timesheet
ViewerJS
.gitignore
.htaccess
.travis.yml
about.php
composer.json WIP of replacing bower-asset packages: 2021-08-12 14:51:38 +02:00
composer.lock WIP of replacing bower-asset packages: 2021-08-12 14:51:38 +02:00
groupdav.htaccess
groupdav.php
Gruntfile.js WIP of replacing bower-asset packages: 2021-08-12 14:51:38 +02:00
header.inc.php.template
index.php
install-cli.php change rollup.config.js to scan for all installed apps, and run rollup as part of install-cli.php automatic 2021-07-02 15:24:12 +02:00
json.php
LICENSE.md
login.php
logout.php
manifest.json
package-lock.json - Fix including everything just for a unit test 2021-08-25 11:32:15 -06:00
package.json - Fix including everything just for a unit test 2021-08-25 11:32:15 -06:00
README.md Fix installation instructions and wiki links 2021-08-10 12:07:08 +02:00
redirect.php
remote.php
rollup.config.js ensure browser resolutions are used 2021-08-27 07:58:30 +02:00
service-worker.js
share.php
status.php
tsconfig.json
updateGruntfile.php
web-test-runner.config.mjs - Fix including everything just for a unit test 2021-08-25 11:32:15 -06:00
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.