Skip to content

Latest commit

 

History

History
125 lines (94 loc) · 1.97 KB

README.md

File metadata and controls

125 lines (94 loc) · 1.97 KB

wasmCloud

Wasm components linked at runtime (via wRPC) and running in wasmCloud.

deployed to wasmCloud

Deploy locally

Setup

wasmCloud

Install wash with brew install wasmcloud/wasmcloud/wash.

wash --version
# wash          v0.38.0
# ├ nats-server v2.10.20
# ├ wadm        v0.19.0
# └ wasmcloud   v1.4.2

Docker

We use docker to start a local registry, so you will need to have it installed.

run

  1. Start up a running environment.

    Starts:

    • a local redis server
    • a local postgres server
    • a local OCI registry
    • a single wasmCloud host, with NATS and wadm running
    • the wash UI (http://localhost:3030/)
    ./local/up.fish
  2. Build (and sign) the components, pushing them to the local registry

    ./build_and_push.fish
  3. Deploy the components with wadm

    ./start.fish
  4. Redeploy the components with wadm

    ./restart.fish
  5. Delete the application with wadm

    ./stop.fish
  6. Stop the wasmCloud host

    ./local/down.fish
  7. Test

    # data init
    curl 'localhost:8080/data-init/all'
    
    # products
    curl 'localhost:8080/products'
    
    # inventory
    curl 'localhost:8080/inventory/?skus=ENG-V8-500'
    
    # orders
    curl 'localhost:8080/orders'
    
    # create order (fish shell)
    curl localhost:8080/orders -d '
    [
      {
        "sku": "WND-WPR-AW",
        "price": 1000,
        "quantity": 1
      },
      {
        "sku": "TIR-SET-AS",
        "price": 20000,
        "quantity": 3
      }
    ]'
    # 201 Created

benchmark

oha 'http://localhost:8080/orders' \
    -c 100 \
    -n 10000 \
    -m POST \
    -H 'Content-Type: application/json' \
    -d '
    [
      {
        "sku": "WND-WPR-AW",
        "price": 1000,
        "quantity": 1
      },
      {
        "sku": "TIR-SET-AS",
        "price": 20000,
        "quantity": 3
      }
    ]'