> For the complete documentation index, see [llms.txt](https://docs.hedge.video/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hedge.video/canister/features/deployment.md).

# Deployment

Canister supports deployment URL calls, helping administrators manage installations at scale.

## How it works

Canister responds to URLs beginning with `canister://`. These can be triggered from a browser, a shell, an MDM, or a script.

**Using a browser**

Paste the URL call below into a web browser, press `Enter`, and Canister will open.

```
canister://open
```

**Using a shell**

Paste the command below into a shell, press `Enter`, and Canister will open.

{% tabs %}
{% tab title="Mac" %}
Using a Terminal:

```
open "canister://open"
```

{% endtab %}

{% tab title="Windows" %}
Using PowerShell:

```
start canister://open
```

{% endtab %}
{% endtabs %}

## Calls <a href="#deployment-call-list" id="deployment-call-list"></a>

The following calls are intended for deployment and administration purposes:

#### Open <a href="#open" id="open"></a>

Launches Canister:

```
canister://open
```

#### Quit <a href="#quit" id="quit"></a>

Closes Canister:

```
canister://quit
```

#### Restart <a href="#restart" id="restart"></a>

Restarts Canister:

```
canister://restart
```

#### Check for updates <a href="#update" id="update"></a>

Triggers an update check:

```
canister://update
```

#### Activate <a href="#activate" id="activate"></a>

Activates Canister using your license key:

```
canister://activate?key=xxxx-xxxx-xxxx-xxxx
```

| URL Parameter | Type   | Required? |
| ------------- | ------ | --------- |
| key           | string | mandatory |

#### Deactivate <a href="#deactivate" id="deactivate"></a>

Deactivate Canister:

```
canister://deactivate
```


---

# 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://docs.hedge.video/canister/features/deployment.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.
