A webapp to track results of foosball games in financial institutions. It is a very niche market!
Python 3
Create a new venv
with either python
or conda
:
conda create -n flask python=3 flask
source activate flask
Download the source code
git clone https://github.com/moneyball-dk/moneyball_app.git
cd moneyball_app
Install the required packages
pip install -r requirements.txt
Start the database
flask db upgrade
Start the webserver
flask run
Run the tests
pytest