A simple Rock Paper Scissors game which can be played in the browser.
Built with Python using Flask tutorial code and SQLite.
Initialize a python virtual environment and install dependencies
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
Initialize the SQLite database.
flask --app rps_game init-db
Start the development flask web application server.
flask --app rps_game --debug run
Run unit tests
pytest