# How to start

### Try to install it on MikoPBX

Now you can create a zip archive and install your new module on the MikoPBX server.

![](/files/-MSgyYykWu3olgNXcXKU)

### Next steps

{% hint style="info" %}
Read the article [Prepare IDE and system tools](/mikopbx-development/prepare-ide-tools.md) before following the next instructions.
{% endhint %}

You should load the **mikopbx/core** package and dependent libraries it helps to resolve references between MikoPBX class names. &#x20;

{% tabs %}
{% tab title="Linux/Mac" %}

```
cd ~/PhpstormProjects/ModuleCalbackFromWebsite
composer install
```

{% endtab %}
{% endtabs %}

Next, you can create a git repository for a new module and commit all new code.&#x20;

{% tabs %}
{% tab title="Linux/Mac" %}

```
git init
echo "vendor/" > .gitignore
git add .
git commit -m 'initial commit'
```

{% endtab %}
{% endtabs %}

If you have a remote git repository you can push your module into it.

{% tabs %}
{% tab title="Linux/Mac" %}

```
git remote add origin <url>
git push -u origin master
```

{% endtab %}
{% endtabs %}


---

# 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.mikopbx.com/mikopbx-development/module-developement/template-module-structure.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.
