> ## Documentation Index
> Fetch the complete documentation index at: https://docs.glue.wtf/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

First, you'll need to install the CLI. This will let you use the `glue` command to locally test your glue scripts and deploy them.

<Steps>
  <Step title="Install the CLI">
    This will let you use the `glue` command to locally test your glue scripts and deploy them.

    <CodeGroup>
      ```shellscript MacOS/Linux theme={null}
      curl -fsSL https://glue.wtf/install.sh | bash
      ```

      ```shellscript Windows theme={null}
      # install deno first: https://docs.deno.com/runtime/getting_started/installation/
      # then install glue:
      deno install --unstable-kv --unstable-temporal -Agfrn glue jsr:@streak-glue/cli
      ```
    </CodeGroup>
  </Step>

  <Step title="Sign in or sign up">
    Glue supports multiple users with Google authentication. You can always switch or sign in with:

    ```shellscript Shell theme={null}
    glue login
    ```
  </Step>

  <Step title="Init a new glue">
    Glues are just plain TypeScript files that import the Glue runtime. You can create from scratch, template or AI using:

    ```shellscript Shell theme={null}
    glue create
    ```
  </Step>
</Steps>
