/jobbsy

Jobbsy - Job Board for Symfony

Primary LanguageHTMLGNU General Public License v3.0GPL-3.0

Jobbsy - Job Board for Symfony

CI/CD

Jobbsy is the first and open source job board for Symfony framework.

Sponsor open source when publishing a job offer is the main goal of Jobbsy ๐Ÿ’–

Online and official website is available on jobbsy.dev.

๐Ÿ“‹ Requirements

๐Ÿ— How to install

First fork the project and clone it:

git clone git@github.com:<your-fork>/jobbsy.git
cd jobbsy

Install PHP dependencies using Composer:

composer install

Launch database service (and adapt it to your needs by copying docker-compose.override.yaml.dist to docker-compose.override.yaml)

docker compose up -d

Finally, run database migrations:

php bin/console doctrine:migrations:migrate

If you want some data to start you can load fixtures:

php bin/console doctrine:fixtures:load

๐Ÿš€ How to launch

If you are using Symfony CLI simply run:

cd jobbsy
symfony serve

Then access the application in your browser at the given URL (https://localhost:8000 by default) and ๐ŸŽ‰

For other cases install and run a web server like Nginx or Apache. You can find some default Symfony configuration in the docs.

๐Ÿงช Run tests

Init test database and load fixtures:

php bin/console doctrine:database:create --env=test
php bin/console doctrine:migrations:migrate --env=test
php bin/console doctrine:fixtures:load --env=test

Then run test suite:

php ./bin/phpunit

Inspirations