Skip to content

Latest commit

 

History

History
executable file
·
39 lines (34 loc) · 902 Bytes

README.md

File metadata and controls

executable file
·
39 lines (34 loc) · 902 Bytes

Dvd Rental

DVD Rental application concept.

Start Application

docker-compose up -d

The applicatin is accesible in http://localhost:8000 address.
Demo user: test@domain.com
Demo pass: 12345678

You can access to backoffice in http://localhost:8000/admin address.
Demo user: testadmin@domain.com
Demo pass: 12345678

Initialize database

docker-compose exec php php bin/console doctrine:migrations:migrate
docker-compose exec php php bin/console doctrine:fixtures:load

Run Tests

Run end-to-end, functional and unit tests

docker-compose exec php php bin/phpunit

Run end-to-end tests

docker-compose exec php php bin/phpunit --testsuite e2e

Run integration tests

docker-compose exec php php bin/phpunit --testsuite integration

Run unit tests

docker-compose exec php php bin/phpunit --testsuite unit