This repository contains the source code, static assets and development scripts for the Tadtech website (tadtech.co.uk).
- Docker 17.06.0+
- Docker Compose
- Composer (optional, to run the test suite locally)
cp .docker/php/.env.dist .docker/php/.env
docker-compose up
If you have Composer installed locally, you can run tests using the following command:
composer install
./vendor/bin/phpunit
If the PHP Docker container is up, you can also run tests inside it:
docker-compose up -d
docker-compose exec php bash -c "cd /app && ./vendor/bin/phpunit"