Group 40. This project involves the team creating a poker game that collects data on winning hands and process that collected data to create a report for players to see previous game data and improve their gameplay for future games. There are multiple portions of the project that were built: a front-end web app, the poker game built using Unity, back-end app, a database, and an analysis engine. Users should be able to play a virtual poker game using simulated money to enhance their skills
-
Change directory into pocket-poker
cd pocket-poker -
Install npm dependencies
npm installornpm i
-
Change directory into API files
cd src/api -
Make a virtual environment for dependencies
python -m venv venv -
Activate venv using
.\venv\Scripts\activate -
Install the dependencies all at once using
pip install -r requirements.txt -
Run the flask server with
flask run
- Start the react server
npm run start