Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 463 Bytes

File metadata and controls

39 lines (27 loc) · 463 Bytes

Blog

Web service with CRUD functionality

Quick Start

  1. Clone the repo
git clone git@github.com:svileex/blog.git
cd blog
  1. Build image
docker compose build
  1. Deploy image
docker compose up
  1. Test
curl --location --request POST 'localhost:8081/api/v1/register' \
--header 'Content-Type: application/json' \
--data-raw '{
    "login": "aboba",
    "password": "test"
}'

API

microblog.yaml