The main tools used in the project:
.
├── docs # Files generated by OpenAPI for API documentation
├── infra # AWS infrastructure configuration files used by SLS
│ ├── functions.yml # Lambda function definitions
│ ├── iamroles.yml # Policies and actions of IAM roles
│ └── resources # Other AWS infrastructure resources
├── src # Project source code
│ ├── common # Common code shared across the project
│ └── functions # Source code for Lambda functions
├── tests # Unit testing with Jest
└── serverless.yml # Infrastructure configuration main file
# clone repository
git clone [email protected]:fernandobritto/clean-energy-access.git
# enter the project folder
cd clean-energy-access
# install dependencies
yarn install
# run the project
yarn localhost
Fernando Britto