This project requires NodeJS (version 14 or later) and NPM. Node and NPM are really easy to install. To make sure you have them available on your machine, try running the following command.
$ npm -v && node -v
6.14.14
v14.17.5
Start with cloning this repo on your local machine:
$ git clone https://github.com/otallyto/compasso-challenge.git
$ cd compasso-challenge
To install and set up the library, run:
$ npm install
Or if you prefer using Yarn:
$ yarn install
$ docker run -d -p 8000:8000 amazon/dynamodb-local
$ npm run offline
$ npm test
$ npm run deploy
Create a city in the database:
curl --request POST \
--url http://localhost:3000/dev/city \
--header 'Content-Type: application/json' \
--data '{
"nome": "Boa Vista",
"estado": "Roraima"
}'
- find city by name:
curl --request GET \
--url 'http://localhost:3000/dev/city?nome=Boa%20Vista'
- find a city by state:
curl --request GET \
--url 'http://localhost:3000/dev/city?estado=Roraima'
- create a client in the database:
curl --request POST \
--url http://localhost:3000/dev/client/ \
--header 'Content-Type: application/json' \
--data '{
"nome": "Tállyto",
"sobrenome": "Rodrigues",
"sexo": "Masculino",
"idade": 25,
"nascimento": "06/04/1996",
"cidade": "Curitiba - PR"
}'
- find client by name:
curl --request GET \
--url 'http://localhost:3000/dev/client?nome=Tállyto'
- update client:
curl --request PUT \
--url http://localhost:3000/dev/client/1 \
--header 'Content-Type: application/json' \
--data '{
"nome": "Tállyto",
"sobrenome": "Sousa Rodrigues",
"sexo": "Masculino",
"idade": 25,
"nascimento": "06/04/1996",
"cidade": "Curitiba - PR"
}'
- delete client:
curl --request DELETE \
--url http://localhost:3000/dev/client/1