Go to file
Igor Scheller 6240e5f046 storage/: .gitignore fixups 2019-10-06 17:11:06 +02:00
bin migration: Order by migrated and append not migrated 2019-07-21 20:54:17 +02:00
config feature: disable lastname+prename in config 2019-08-24 10:56:59 +02:00
contrib docker-compose: Removed unused static volume 2019-10-06 16:58:19 +02:00
db Replaced gettext translation with package 2019-07-08 01:58:06 +02:00
import camp 2011 export 2011-07-14 19:53:19 +02:00
includes Edit user: Prevent overwriting first and last name if temporary disabled 2019-08-24 12:53:26 +02:00
public Moved emojis to assets 2018-09-10 22:49:46 +02:00
resources better login error message 2019-08-18 20:25:09 +02:00
src Metrics: Add database access time 2019-08-21 14:22:31 +02:00
storage storage/: .gitignore fixups 2019-10-06 17:11:06 +02:00
tests CI: Fix tests 2019-09-17 22:16:53 +02:00
.babelrc Use core-js as polyfill to really support older browsers. 2019-07-26 12:40:21 +02:00
.browserslistrc Use core-js as polyfill to really support older browsers. 2019-07-26 12:40:21 +02:00
.gitignore Versioned yarn.lock, fixed docker build 2019-08-19 11:19:45 +02:00
.gitlab-ci.yml CI: Fix slow mariadb startup 2019-09-17 20:24:16 +02:00
LICENSE directory renames and cleanup 2011-06-11 18:08:56 +02:00
README.md Merge branch 'master' into docker 2019-07-21 13:42:19 +02:00
composer.json Replaced validation with `respect/validation` 2019-07-10 13:34:15 +02:00
package.json Fix CI 2019-08-19 00:16:32 +02:00
phpunit.xml Merge branch 'noc0lour:fix_setup_bugs', closes #335 2017-10-31 13:41:17 +01:00
webpack.config.js Use core-js as polyfill to really support older browsers. 2019-07-26 12:40:21 +02:00
yarn.lock Versioned yarn.lock, fixed docker build 2019-08-19 11:19:45 +02:00

README.md

pipeline status coverage report Codacy Badge GPL

Engelsystem

Please visit https://engelsystem.de for a feature list.

To report bugs use engelsystem/issues

Installation

Requirements

  • PHP >= 7.1
    • 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

Additional requirements if you want to build the project by yourself

  • Node >= 8 (Development/Building only)
  • Yarn (Development/Building only)
  • PHP Composer (Development/Building only)

This should be included in your node install

  • npm (Development/Building only)

Download

Stable

  • 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.

Latest unstable

The following instructions explain how to get, build and run the latest engelsystem version directly from the git master branch (may be unstable!).

  • Clone the master branch: git clone https://github.com/engelsystem/engelsystem.git
  • Install Composer and Yarn (which requires Node.js)
  • Install project dependencies:
    composer install
    yarn
    
    On production systems it is recommended to use
    composer install --no-dev
    composer dump-autoload --optimize
    
    to install the engelsystem
  • Build the frontend assets
    yarn build
    

Configuration and Setup

  • The webserver must have write access to the import and storage directories 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.

Engelsystem can now be used.

Session Settings:

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

Development

Since the engelsystem is open source, you can help to improve the system. We really love to get pull requests containing fixes or implementations of our Github issues.

Please create single pull requests for every feature instead of creating one big monster of pull request containing a complete rewrite.

Testing

To run the unit tests use

vendor/bin/phpunit --testsuite Unit

If a database is configured and the engelsystem is allowed to mess around with some files, you can run feature tests. The tests can potentially delete some database entries, so they should never be run on a production system!

vendor/bin/phpunit --testsuite Feature
# or for unit- and feature tests:
vendor/bin/phpunit

CI & Build Pipeline

The engelsystem can be tested and automatically deployed to a testing/staging/production environment. This functionality requires a GitLab server with a working docker runner.

To use the deployment features the following secret variables need to be defined (if undefined the step will be skipped):

SSH_PRIVATE_KEY         # The ssh private key
STAGING_REMOTE          # The staging server, e.g. user@remote.host
STAGING_REMOTE_PATH     # The path on the remote server, e.g. /var/www/engelsystem
PRODUCTION_REMOTE       # Same as STAGING_REMOTE but for the production environment
PRODUCTION_REMOTE_PATH  # Same as STAGING_REMOTE_PATH but for the production environment

Docker container

To build the engelsystem and the engelsystem-nginx container:

cd contrib
docker-compose build

or to build the containers separately

docker build -f contrib/nginx/Dockerfile . -t engelsystem-nginx
docker build -f contrib/Dockerfile . -t engelsystem

Import database

docker exec -it engelsystem 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

Translation

We use gettext. You may use POEdit to extract new texts from the sourcecode. Please config POEdit to extract also the twig template files using the following settings: https://gist.github.com/jlambe/a868d9b63d70902a12254ce47069d0e6

Codestyle

Please ensure that your pull requests follow PSR-2 and PSR-4.