Game scoring for Yahtzee, powered by the Costs to Expect API.
We plan to create Apps for each of the Board and dice games we play, the Apps will all be Open Source, you are free to create your own and then submit a PR to the Costs to Expect API to add the new game type.
I'm going to assume you are using Docker, if not, you should be able to work out what you need to run for your development setup.
Go to the project root directory and run the below.
- $
docker network create costs.network
* - $
docker compose build
- $
docker compose up
- $
docker exec yahtzee.app php artisan key:generate
After generating the key, you need to restart your containers, so run down and up again to force the new key to be used.
- $
docker exec yahtzee.app php artisan migrate:install
- $
docker exec yahtzee.app php artisan migrate
*We include a network for local development purposes, I need to connect to a local version of the Costs to Expect API, You probably don't need this so remove the network section from your docker compose file and don't create the network.