A reversi game with an Artificial Intelligence built using python (to build AI) and ReactJS (to display the elements on the screen)
These instructions will get you a copy of the project up and running on your local machine for testing purposes.
What things you need to install the software and how to install them
node
npm
python
pip
To run this game, you need to install the dependencies for the inteface and the IA.
Clone this repository:
git clone https://github.com/LimaEduardo/reversIA.git
Install IA dependencies
$pip install --user flask
$pip install --user flask-cors
Install interface dependencies (in the root of the repository)
$npm i
After installing those dependencies, start the IA:
$cd ./python
export FLASK_APP=server.py
flask run
then, start the interface (in the root of the repository):
npm start
- Create-React-App - The web framework used
- Flask - To set-up the python server