# Database

You can now create your own database.

1. Go to <https://console.firebase.google.com/>
2. Look for the name of the project you've created `GDG_Cloud` and click it
3. On the left menu click "Database"
4. Have a file in your computer for example `myDatabase.json` containing the information from the json below.
5. Click the three dots to the right
6. Select the option `Import json`
7. Click `Browse`
8. Click `import`

{% code title="myDatabase.json" %}

```javascript
{
  "myDatabase": [
    {
      "Email": "laura.s.morinigo@gmail.com ",
      "Name": "Laura",
      "Skill": "Firebase"
    },
    {
      "Email": "amanda@gdgcloud.com",
      "Name": "Amanda",
      "Skill": "Actions on Google"
    },
    {
      "Email": "yaz@gdgcloud.com",
      "Name": "Yaz",
      "Skill": "Tensorflow"
    },
    {
      "Email": "terraccianosaverio@gmail.com",
      "Name": "Saverio",
      "Skill": "Machine Learning"
    }
  ]
}

```

{% endcode %}


---

# 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://amandacavallaro.gitbook.io/convapp/database.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.
