# Create an account

Go to <https://cerberus.a11n.io> and create an account

After logging in, create an App with and call it Acme, with a description of your choice.

Then generate a new API key.

In the project checked out before, navigate to 'backend/go' and add the following to the '.env' file created earlier, replacing the text in quotes with your own API secret:

```
CERBERUS_API_SECRET = "YOUR CERBERUS API SECRET"
```

Next, add the follwing to the 'evironment' section of the cerberus-example-app service in 'docker-compose.yaml', replacing the text in quotes with your own API key:

```
environment:
  - CERBERUS_HOST = "https://cerberus-api.a11n.io"
  - CERBERUS_API_KEY = "YOUR CERBERUS API KEY"
  - CERBERUS_API_SECRET = ${CERBERUS_API_SECRET}
```


---

# 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.a11n.io/tutorial/creating-static-rules/create-an-account.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.
