# Setup

In this workshop you will work on an existing Elm app, and add features to the app, as you learn different techniques that are used in real world Elm apps.

The app you will be working with displays articles. Your job will be to implement comments on the articles.

## Setup

Clone the repo using the following command in your terminal:

```
git clone https://github.com/akselw/elm-workshop.git
```

This will create a directory called `elm-workshop`. Navigate to the directory:

```
cd elm-workshop
```

The app uses `npm`. Intall dependencies using the following command (don't use `npm install`):

```
npm ci
```

Start the app:

```
npm start
```

You should now see the following in your terminal:

![Result of \`npm start\`](/files/-MKje611s7IBdYwzD3Jp)

And if you go to [localhost:8080](http://localhost:8080) in your browser, you should see a working app.

To get started, jump to Task 1.


---

# 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://aksel.gitbook.io/elm-workshop/setup.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.
