Antithesis quickstart code sample and tutorials showcasing core Antithesis capabilities
- Golang microservices with Chi
- Postgres
- NATs
- Stripe API
Start:
make up
Stop:
make down
Create purchse order:
curl -X POST \
http://localhost:8000/orders \
-H 'Content-Type: application/json' \
-d '{
"amount": 99.99,
"currency": "usd",
"customer": "Alice_123",
"description": "This is demo"
}'
curl -X GET http://localhost:8000/orders/1
Get purchase order:
curl -X GET http://localhost:8000/orders/1
Consuming message using NATs (Jetstream) with their pull model and writes to Stripe API (stripe-mock).
Basic.