Your service lives in its own repository, completely separate from the Trellis core. Create a standalone orders-service project in your language runtime:

Create a new Deno project:

mkdir orders-service && cd orders-service
deno init

Add the Trellis SDK and TypeBox, our schema library, as dependencies:

deno add npm:@qlever-llc/trellis npm:@sinclair/typebox

If you are using Node.js instead, use npm:

npm install @qlever-llc/trellis @sinclair/typebox