> For the complete documentation index, see [llms.txt](https://burkeholland.gitbook.io/vs-code-can-do-that/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://burkeholland.gitbook.io/vs-code-can-do-that/exercise-6-remote-development/create-a-new-function-in-the-container.md).

# Create a new function in the container

Developing in remote containers is just like developing on your own machine. Add a new endpoint to the API to make the light change rapidly.

{% tabs %}
{% tab title="Exercise" %}

* Add a new Function with the Azure Functions extension
* Call it "danceDance"
* Set the light color to a random hex value
* Restart the project with the VS Code debugger
* Visit the danceDance endpoint and refresh your browser
  {% endtab %}

{% tab title="Answer" %}

* Open the Command Palette (**Cmd/Ctrl + Shift + P**)
* Select "Azure Functions: Create Function"

![](/files/-Lm6MJr70NAhnBTrq5Qb)

* Select "HTTPTrigger" from the prompt

![](/files/-Lm6MT_BhHpvlMugkXxW)

* Name the function "danceDance"

![](/files/-Lm6Mb9NBak3Jeh9Jtci)

* Select "anonymous" at the next prompt

![](/files/-Lm6Mj14nBsHb5T-CjyF)

* A new Function is created in a folder called "danceDance"
* The Function code file is automatically opened in VS Code

![](/files/-Lm6MtqbEPi0RvFBZtv_)

* Delete all the code from this "index.js" file and replace it with the following

```
const bulb = require("../bulb");

module.exports = async function(context, req) {
  // generate random hex color
  // taken from: https://www.paulirish.com/2009/random-hex-color-code-snippets/
  const hex = Math.floor(Math.random() * 16777215).toString(16);
  try {
    const result = await bulb.setColor(hex);

    context.res = {
      body: { color: hex }
    };
  } catch (err) {
    context.res = {
      body: { message: "LIFX Lamp API is unavailable" }
    };
  }
};
```

* Press **F5** to run the Function app
* Visit "<http://localhost:7071/api/danceDance>" and refresh the page as many times as you want

![](/files/-Lm6QOTrphLP4Wt7aGab)
{% endtab %}
{% endtabs %}


---

# 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://burkeholland.gitbook.io/vs-code-can-do-that/exercise-6-remote-development/create-a-new-function-in-the-container.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.
