Through this tool, people can ask for help from a heroe nearby. Whether it concerns groceries or babysitting. Everything is possible, as long as it contributes to the goal of protecting vulnerable people and keeping people at work in important vital professions.
docker-compose up -d
to launch all the docker containers required for this appdocker exec -it test-php-fpm /bin/sh
into the php container. Within that container run composer install
to generate the vendor directory containing various dependencies. You will see this appear in the applications source directory.docker exec -it test-mariadb /bin/sh
into the database container. Within that container run mysql -u test -p test < database.sql
to generate the database structure.Your environment is now in a state where you can edit the various php files, when you refresh your browser, the latest state of your work will be visible because the source directory is loaded live into the running containers.
composer install
to install the dependencies requireddatabase.sql
.env.example
to .env
and fill out the required detailsIf you want to contribute, but the php-cs-fixer check fails on your merge request:
php-cs-fixer fix -v .
, this will auto fix all the linting issues