diff --git a/src/content/docs/everycli/local-dev.mdx b/src/content/docs/everycli/local-dev.mdx index 76f90e3..92b0564 100644 --- a/src/content/docs/everycli/local-dev.mdx +++ b/src/content/docs/everycli/local-dev.mdx @@ -3,7 +3,7 @@ title: Every CLI Usage description: The Every CLI is a developer tool that includes a local gateway server. --- -import { Tabs, TabItem } from '@astrojs/starlight/components'; +import { Tabs, TabItem } from "@astrojs/starlight/components"; :::tip[Before you continue] To get setup, please follow our [Quick Start](/quick-start) guide. @@ -22,13 +22,13 @@ Running the Every CLI will start a [Homestar](/homestar/what-is-homestar/) node, #### To create a single function Homestar workflow ```shell -every dev --fn +every dev --fn ``` #### To create a multi-function Homestar workflow ```shell -every dev --fn --fn +every dev --fn --fn ``` ## Function development loop @@ -57,7 +57,7 @@ export function hello(name: string): string { Start the CLI and point it to your custom TypeScript function ```shell -every cli dev --fn /hello.ts +every cli dev --fn /hello.ts ``` @@ -177,7 +177,7 @@ This command will produce a `hello.wasm` component. Start the CLI and point it to your custom Wasm function ```shell -every cli dev --fn /hello.wasm +every cli dev --fn /hello.wasm ``` ## Setting up a tunnel @@ -193,7 +193,7 @@ By default the [every-cli](https://github.com/everywhere-computer/every-cli) wil If you would like to specify your own `toml` file to be used as the configuration for Homestar, you can use the `--config` argument: ```shell -every cli dev --fn /hello.wasm --config ../.toml +every cli dev --fn /hello.wasm --config ../.toml ``` You can specify as many or as few values in your `toml` file as you like and the [every-cli](https://github.com/everywhere-computer/every-cli) will prioritize the values from your config over the default values.