Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 487 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 487 Bytes

Welcome

Build

cargo build --release

Run

cargo run --release

Test

curl -X POST http://localhost:8008/has_status -d '{ "status": "Success" }' -H 'Content-Type: application/json' -H 'Accept: application/json'

Add to docker compose yaml

services:
  callback-test-app:
    container_name: callback-test-app
    image: ghcr.io/translatorsri/callback-test-app:0.1.0
    expose:
      - 8008
    ports:
      - "8008:8008"