Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 860 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 860 Bytes

footyapp

A web app for managing a 5 a side footy team.

Select the players using the checkboxes and it should output a balanced team for each side.

Coded using Serverless, Python, HTML and Flask using grayscale bootstrap template

You can test this by cloning this repo and running the following serverless commands: You must have your aws credentials configured as serverless will build the following:

  • API Gateway
  • Lambda
  • DynamoDB (for now you need to manually run the loader commands below to fill the db with data)
npm init -f
npm install --save-dev serverless-wsgi serverless-python-requirements
virtualenv venv --python=python3
source venv/bin/activate
pip install -r requirements.txt
sls deploy
python3 services/dynamodb_player_loader.py
python3 services/dynamodb_results_loader.py
sls info