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 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.