PokerHandsCalculator is a web application built with Vue.js and Laravel that calculates poker hand winning percentages and equity at different stages of the game (pre-flop, flop, turn, and river). This tool is designed to help poker players make informed decisions by analyzing the strength of their hands in various scenarios.
Contributions are welcome! Please follow these steps to contribute:
Fork the repository. Create a new branch. Commit your changes. Push to the branch. Open a Pull Request.
To get started with PokerHandsCalculator, follow these steps:
Make sure you have the following software installed:
Clone the repository!
Backend Setup (Laravel) Install Dependencies:
bash
composer install
Copy the .env File:
cp .env.example .env
Generate Application Key:
php artisan key:generate
Configure Environment Variables:
Update the .env file with your database credentials and other necessary settings.
Run Migrations:
php artisan migrate
Start the Laravel Development Server:
php artisan serve
Install Dependencies:
npm install
Compile and Hot-Reload for Development:
npm run serve