You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
msquare 557261b688
Merge pull request #725 from engelsystem/dependabot/npm_and_yarn/acorn-6.4.1
Bump acorn from 6.4.0 to 6.4.1
5 years ago
bin migration: Order by migrated and append not migrated 5 years ago
config Header: Add external links 5 years ago
db Message: Add coverage, fix method hints 5 years ago
docker Added Schedule parsing and replaced old Fahrplan importer 5 years ago
includes fixes #693: never select a default date before first existing shift in shifts view 5 years ago
public Moved emojis to assets 6 years ago
resources Fixed german translation 5 years ago
src Metrics: Fixed message count 5 years ago
storage storage/: .gitignore fixups 5 years ago
tests Metrics: Added controller feature test 5 years ago
.babelrc Use core-js as polyfill to really support older browsers. 5 years ago
.browserslistrc Use core-js as polyfill to really support older browsers. 5 years ago
.editorconfig adding editorconfig to enforce PSR-2 5 years ago
.gitignore Adds a docker dev setup 5 years ago
.gitlab-ci.yml Use pcov to speed up tests with code coverage 5 years ago
.phpcs.xml Add phpcs config file 5 years ago
CONTRIBUTING.md Update docs 5 years ago
DEVELOPMENT.md Update docs 5 years ago
LICENSE directory renames and cleanup 14 years ago
README.md Update docs 5 years ago
composer.json Added Schedule parsing and replaced old Fahrplan importer 5 years ago
package.json Update JavaScript Dependencies to resolve security issue with serialize-javascript 5 years ago
phpunit.xml Merge branch 'noc0lour:fix_setup_bugs', closes #335 7 years ago
webpack.config.js add 36c3 theme 5 years ago
yarn.lock Bump acorn from 6.4.0 to 6.4.1 5 years ago

README.md

pipeline status coverage report Codacy Badge GPL

Engelsystem

Please visit engelsystem.de for a feature list.

To report bugs use engelsystem/issues.

Since the Engelsystem is open source, you can help improving it. We really love to get pull requests containing fixes or improvements. Please read the CONTRIBUTING.md and DEVELOPMENT.md before you start.

Installation

The Engelsystem may be installed manually or by using the provided docker setup.

Requirements

  • PHP >= 7.2
    • Required modules:
      • dom
      • json
      • mbstring
      • PDO
        • mysql
      • tokenizer
      • xml/libxml/SimpleXML
      • xmlwriter
  • MySQL-Server >= 5.7.8 or MariaDB-Server >= 10.2.2
  • Webserver, i.e. lighttpd, nginx, or Apache

Download

  • Go to the Releases page and download the latest stable release file.
  • Extract the files to your webroot and continue with the directions for configurations and setup.

Configuration and Setup

  • The webserver must have write access to the storage directory and read access for all other directories

  • The webserver must point to the public directory.

  • The webserver must read the .htaccess file and mod_rewrite must be enabled

  • Recommended: Directory Listing should be disabled.

  • There must a be MySQL database created with a user who has full rights to that database.

  • If necessary, create a config/config.php to override values from config/config.default.php.

    • To remove values from the footer_items, available_themes, locales, tshirt_sizes or headers lists the config file has to be renamed.
  • To import the database the bin/migrate script has to be called. If you are not allowed to execute scripts, then execute the install-<version>.sql script. Download at Releases page.

  • In the browser, login with credentials admin : asdfasdf and change the password.

The Engelsystem can now be used.

Session Settings

  • Make sure the config allows for sessions.
  • Both Apache and Nginx allow for different VirtualHost configurations.

Docker

To build the es_nginx and the es_php_fpm containers:

cd docker
docker-compose build

or to build the containers separately

docker build -f docker/nginx/Dockerfile . -t es_nginx
docker build -f docker/Dockerfile . -t es_php_fpm

Import database

docker exec -it engelsystem_es_php_fpm_1 bin/migrate

Scripts

bin/deploy.sh

The bin/deploy.sh script can be used to deploy the Engelsystem. It uses rsync to deploy the application to a server over ssh.

For usage see ./bin/deploy.sh -h

bin/migrate

The bin/migrate script can be used to import and update the database of the Engelsystem.

For more information on how to use it call ./bin/migrate help