# Introduction

Clone Shopify Sample Project

{% code title="Project Directory >" %}

```bash
git clone git@github.com:Shopify/dawn.git <<your_theme_name>>
```

{% endcode %}

As this repo was cloned from Shopify, we'll forcibly remove the remnants of that repo and reinitialize it.

```
cd <<your_theme_name>>
git rm -r --cached . -f
rm -rf .git
git init . -b main
```

Add files to local repo

```
git add .
git commit -m "initial commit"
```

Add remote

Go to Github and create a new project, and then we'll add a remote:

```
git remote add origin <<remote url>>
```

Connect to Shopify

```
shopify login --store=<<your_store>>.myshopify.com
```

```
shopify theme serve
```

###

### Push to GitHub

\*Note: You may need to do this step from VSCode

```
git push origin main
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.simnova.com/shopify-theme-guide/master.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
