Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
Ralf Becker 812d0d91c0 using sync versions to work with nodejs 12.x
nothing to gain from the async/promises version
2021-07-13 08:30:51 +02:00
addressbook pending translations from our translation server 2021-07-12 08:15:16 +02:00
admin deprecated egw.includeJS() in favor of es6 import statement 2021-07-09 17:27:22 +02:00
api pending translations from our translation server 2021-07-12 08:15:16 +02:00
calendar pending translations from our translation server 2021-07-12 08:15:16 +02:00
doc change PHP version to 7.4 and build with nodejs 14.x 2021-07-09 14:23:58 +02:00
emailadmin
filemanager remove generated .js files from git 2021-07-01 08:38:08 +02:00
files
home re-add accidently deleted home app.js but it will need a lot work: 2021-07-02 11:46:33 +02:00
importexport legacy load jQueryUI as tooltip has wired context problems if loaded as module 2021-07-02 08:52:18 +02:00
infolog deprecated egw.includeJS() in favor of es6 import statement 2021-07-09 17:27:22 +02:00
lit Adding carbon lit components tutorial 2021-07-09 20:16:24 +02:00
lit-element-starter-ts/src Import/Export: Avoid "Undefined variable: filter" error 2021-06-11 13:17:47 -06:00
mail Make sure et2 widgets are there before the container into vfsSelectUI app object 2021-07-06 15:50:49 +02:00
notifications defer first poll by 10 seconds, to speed up start race and make sure status app is loaded 2021-07-09 08:36:13 +02:00
pixelegg legacy load jQueryUI as tooltip has wired context problems if loaded as module 2021-07-02 08:52:18 +02:00
preferences remove generated .js files from git 2021-07-01 08:38:08 +02:00
resources remove generated .js files from git 2021-07-01 08:38:08 +02:00
saml
setup
timesheet remove generated .js files from git 2021-07-01 08:38:08 +02:00
ViewerJS
.gitignore Igonore auto generated files and folders to commit 2021-07-02 10:39:46 +02:00
.htaccess
.travis.yml
about.php
composer.json
composer.lock Revert "update composer.lock" 2021-07-02 15:07:27 +02:00
groupdav.htaccess
groupdav.php
Gruntfile.js 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
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 Adding carbon lit components tutorial 2021-07-09 20:16:24 +02:00
package.json Adding carbon lit components tutorial 2021-07-09 20:16:24 +02:00
README.md
redirect.php
remote.php
rollup.config.js using sync versions to work with nodejs 12.x 2021-07-13 08:30:51 +02:00
service-worker.js
share.php
status.php
tsconfig.json deprecated egw.includeJS() in favor of es6 import statement 2021-07-09 17:27:22 +02:00
updateGruntfile.php
webdav.php

EGroupware

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

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

https://software.opensuse.org/download.html?project=server%3AeGroupWare&package=egroupware-epl

Installing EGroupware 20.1 via Docker:

EGroupware 20.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 doc/docker subdirectory.

Installing EGroupware 19.1 via Docker:

EGroupware 19.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 doc/docker subdirectory.

Installing EGroupware development version:

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.