This project is a simple address book application built with Symfony, aimed at listing contacts. It's designed as a learning tool for practicing Doctrine ORM, migrations, and data generation with FakerPHP.
First, install all dependencies using Composer:
composer installNext, start the database using Docker Compose in detached mode:
docker compose up -dRun the database migrations to set up the schema:
symfony console doctrine:migrations:migrateLoad some sample data into the database using FakerPHP fixtures:
symfony console doctrine:fixtures:loadFinally, start the Symfony development server:
symfony server:start -dVisit http://localhost:8000 in your browser to see the application in action.