Firstly, thank you!
This project uses Python 3.6
and Node 8
. You will also need Docker
to run the tests.
- Install the Python dependencies annotated in requirements.dev.txt:
$ pip install -r requirements.dev.txt
- Install the Node dependencies:
$ sudo npm install -g serverless
$ npm install
- You'll also need to set up your AWS credentials. Ask your local admin for a set. Store them locally with:
$ aws configure
You can lint the project and run the tests with:
$ make lint
$ make test
You can deploy to the dev environment with:
make deploy-dev