- Symfony 5
- MySql
- Docker
- Doctrine
- Clone project and enter to the project's folder
- Build docker images
docker-compose build
- Start all containers
docker-compose up -d
- Enter the ro_php container and create database
docker exec -it ro_php bash
./bin/console doctrine:database:create
- Run migrations and run fixtures (optional)
./bin/console doctrine:migartion:migrate
./bin/console doctrine:fixtures:load
yarn encore dev
yarn encore dev --watch
yarn encore production
- check if everything is ok
composer cs-check
- make everything according code style configuration
composer cs-fix