Bingo game to play online while the quarantine of 2020. This project consist in a Flask based web where every user is given a random card to play via a instagram direct or similar.
- Clone the repo with
git clone https://github.com/martin-axt/Bingo.git - Change directory
cd Bingo - Create a virtual environment
virtualenv venv - Activate the virtual environment
source ./venv/bin/activate - Install Flask with pip
pip install Flask - Run the server
gunicorn -b 0.0.0.0:8080 -w 4 app:app
