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

# Deploy a Docusaurus Site

> Learn how to use Appz's features with Docusaurus

export const framework_0 = "Docusaurus"

export const intro_0 = "Docusaurus is an all-in-one web framework for building fast, content-focused websites. By default, Docusaurus builds websites that have zero JavaScript runtime code."

## Get Started with {framework_0} on Appz

{intro_0}

<Note>You can deploy a static **{framework_0}** site to Appz with zero configuration.</Note>

<p>To get started with **{framework_0}** on Appz:</p>

* If you already have a project set up with **{framework_0}**, first [install](/installation) the Appz CLI. Then, run the <code>appz</code> command from your project's root directory to deploy.
* Alternatively, clone one of our **{framework_0}** example repositories to your preferred git provider. You can then deploy it on Appz using the deployment button provided below:
* Or, select a template from Appz's marketplace:

<CardGroup cols={2}>
  <Card>
    <CardGroup cols={2}>
      <Card href="https://youappz.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fyouappz%2Fyouappz%2Ftree%2Fmain%2Fexamples%2Fnextjs&template=nextjs">
        <img noZoom src="https://mintcdn.com/appz/GUAmIFRofSFDEXu7/images/deploy.png?fit=max&auto=format&n=GUAmIFRofSFDEXu7&q=85&s=08bd28e0d797b70154b03e98370f57e7" width="98" height="41" data-path="images/deploy.png" />
      </Card>

      <Card href="https://docusaurus.appz.dev">
        <img noZoom src="https://mintcdn.com/appz/GUAmIFRofSFDEXu7/images/demo.png?fit=max&auto=format&n=GUAmIFRofSFDEXu7&q=85&s=aafafb4fdd80f063ab680322b054bc7f" width="63" height="38" data-path="images/demo.png" />
      </Card>
    </CardGroup>
  </Card>

  <Card href="https://docusaurus.io/docs">
    Refer to the **Docusaurus Docs** to learn more about Docusaurus or for assistance with an Docusaurus project.
  </Card>
</CardGroup>

<Steps titleSize="h3">
  <Step title="Set up a new project">
    ```bash terminal theme={null}
    appz init docusaurus
    ```
  </Step>

  <Step title="Install Toolchain & Dependencies">
    ```bash terminal theme={null}
    cd docusaurus
    appz setup
    ```

    this will install dependencies, including the Nodejs runtime requirements
  </Step>

  <Step title="Start development Server">
    ```bash theme={null}
    appz dev
    ```
  </Step>

  <Step title="Build & Preview">
    ```bash theme={null}
    appz build
    ```

    ```bash theme={null}
    appz preview
    ```
  </Step>

  <Step title="Deploy">
    ```bash theme={null}
    appz
    ```
  </Step>
</Steps>
