Property Decider helps you making a decision about your next property move by sharing property details between your housemates/partners, voting, and commenting the property.
Please note: Only UK property sites are supported.
Register to Property Decider, grab a Zoopla, Rightmove, or On The Market link to a property, paste it into Property Decider, and we will fetch the property details for you.
You can then invite your partners or housemates to a group to property decider, and you can then start voting whether or not you like the property, and start the discussion with comments.
- PHP 8.0: on macOS you can install it via Homebrew with
brew install php@8.0
- Composer v2: check the Composer website for instructions
- Postgres v13: on macOS you can install it via Homebrew with
brew install postgres@13
- Node v14: you can install it using nvm via
nvm install 14.17.1
- Yarn: you can install it via
npm i -g yarn
composer install
yarn
php artisan migrate --seed
php artisan serve
Some handy composer scripts are available to help with code quality:
composer run-script check-style
: lint PHP files using PHP CS Fixer, and blade files using TLintcomposer run-script stan
: runs static analysis on PHP files using Psalm and its Laravel plugincomposer run-script test
: runs unit and feature tests using PHPUnit and Laravel parallel testing feature via Paratestcomposer run-script fix-style
: fix PHP files style via PHP CS Fixercomposer run-script ci
: runs thecheck-style
,stan
, andtest
scripts sequentially
Additionally CI is run using GitHub Actions