Portfolio project with updating and filtering data
git clone https://github.com/rengifocris/portfolio.git
cd into portfolio
./mvnw spring-boot:run
open a browser on http://localhost:8080
Going to this URL you're gonig to be able to see the swagger docs http://localhost:8080/swagger-ui.html
GET.request.portfolio.mov
Sample Request for fetching dataππ½
curl -i -X GET 'http://localhost:8080/portfolio/{IdNumber}'
Going to this URL you're gonig to be able to see the swagger docs http://localhost:8080/swagger-ui.html
PUT.request.portfolio.mov
Sample request for update dataππ½
curl -i -X PUT \
-H "Content-Type:application/json" \
-d \
'{
"photo": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Marvel_Logo.svg/2560px-Marvel_Logo.svg.png",
"title": "Marvel",
"description": "Marvel comics and marvel studios are rocking!!",
"twitterUsername": "Marvel"
}' \
'http://localhost:8080/portfolio/{IdNumber}'
15 hours nearly.