This project is a simple job board application built with Symfony. It's designed as a learning tool for practicing Form and CSRF Token.
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.