Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 824 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 824 Bytes

Symfony Address Book Project

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.

Start project

First, install all dependencies using Composer:

composer install

Next, start the database using Docker Compose in detached mode:

docker compose up -d

Run the database migrations to set up the schema:

symfony console doctrine:migrations:migrate

Load some sample data into the database using FakerPHP fixtures:

symfony console doctrine:fixtures:load

Finally, start the Symfony development server:

symfony server:start -d

Visit http://localhost:8000 in your browser to see the application in action.