....
-
Fork and then Clone this repository.
-
Make sure that you are in the correct directory (folder) that contains a
Pipfile
, then runpipenv install
in your terminal to install the required Python libraries. -
Now that your
pipenv
virtual environment is ready to use, enterpipenv shell
to enter the virtual environment. -
Run
npm install --prefix client
in your terminal to install the dependencies for the React app. -
Enter the command
cd server
in the terminal to move into the server directory. -
Enter the command
python app.py
in the terminal to run the Flask app (make sure that you are in theserver
directory before running this terminal command). -
In a new terminal, run
npm start --prefix client
in your terminal to run the React app in the browser. If your browser does not automatically open the page for you, open http://localhost:4000 to view it in your browser.