#Required stack
- php 8.1
- symfony cli (optional)
- docker
- composer
- yarn
#Environment variable Use default ones in .env or create .env.local and override as you need Don't forget to configure a valid MAILER_DSN so that you can receive automatic emails.
#Installation
- Run composer install
- yarn install
- yarn encore prod
- docker compose up --remove-orphans -d
- bin/console doctrine:migrations:migrate
- bin/console doctrine:fixtures:load --no-interaction --append
- symfony serve
#Default user account Since you ran fixtures command you can log in as (user/password)
- admin@carbooking.com/admin (ROLE_ADMIN)
- user@carbooking.com/user (ROLE_USER)
You can create a new user account by registering from '/' url as well.
Enjoy!