> For the complete documentation index, see [llms.txt](https://quickserve.quintindev.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://quickserve.quintindev.com/getting-started/configuration.md).

# Configuration

QuickServe is meant to be configurable, to suit your limitations, and needs.

### Config File

The main configuration file is located at `<QS-FOLDER>/config.toml` . To find you `<QS-FOLDER>` see [QuickServe Folder](/getting-started/quickserve-folder.md). The file uses the [TOML](https://toml.io/) syntax.

### Sections

The configuration file is broken down into three main sections:

#### web

Configuration related to the QuickServe website, and websockets.

<table><thead><tr><th width="154.82421875">Setting</th><th>Default</th><th>Description</th></tr></thead><tbody><tr><td>secret_key</td><td>"secret-key-change-in-production"</td><td>Secret key used by Flask, see the <a href="https://flask.palletsprojects.com/en/stable/config/#SECRET_KEY">Flask documentation</a> for more information.</td></tr><tr><td>websocket_port</td><td>5000</td><td>The port used by the main QuickServe websocket for things such as the controller interface.</td></tr><tr><td>websocket_host</td><td>"0.0.0.0"</td><td>The host used by the main QuickServe websocket for things such as the controller interface.</td></tr></tbody></table>

### driver

Configuration related to the QuickServe driver **(NOT CURRENTLY USED)**.

### **database**

Configuration related to QuickServe's internal database.

<table><thead><tr><th width="155.43359375">Setting</th><th>Default</th><th>Description</th></tr></thead><tbody><tr><td>file_path</td><td>"/opt/quickserve/database.db"</td><td>The path to the internal QuickServe database.</td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://quickserve.quintindev.com/getting-started/configuration.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
