# For Development the app

The problem comes up in development where you do not want to build your images from docker-compose cause it takes time

For this we have 2 development docker-compose files. One for debug and another for dev but not in debug mode.

These containers are using volumes to solve the problem. The pkg directory is mounted to the container and the entrypoint compiles the code You can set up Debug in the IDE connecting to port 40000. to start in debug mode run

```
GITHUB_USER=${USER} GITHUB_TOKEN=${TOKEN} docker-compose -f docker-tools/docker-compose.yml -f docker-tools/docker-compose-debug.yml up
```

or for non debug mode run

```
GITHUB_USER=${USER} GITHUB_TOKEN=${TOKEN} docker-compose -f docker-tools/docker-compose.yml -f docker-tools/docker-compose-dev.yml up
```


---

# 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://motivlabs.gitbook.io/diesel/development.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.
