# Deploying the Issuer

**What We Are Doing:**

* Using the [One-Click Deployment portal](https://oneclick.empe.io/) to create an Issuer service.
* The Issuer will be able to issue Verifiable Credentials once we provide a schema.

**Why:** The Issuer is a trusted authority that creates credentials. By deploying it through the portal, we avoid manual setup and get a ready-to-use endpoint.

**Steps:**

1. Log into the One-Click Deployment platform.
2. Create a new Issuer (see [Create Issuer](/develop/intro/create_issuer.md)).
3. Once active, note down necessary details. This variables can be found after clicking on the Issuer Details in the One-Click Deployment portal.
   * `ISSUER_URL` (e.g., `https://your-issuer.evdi.app`) (the URL where the Issuer is hosted)
   * `ISSUER_SECRET` (e.g., `your-issuer-secret`) (the secret used to authenticate requests to the Issuer)
4. Store these in your `.env` file so your application can access them securely:

   ```
   ISSUER_URL=https://your-issuer.evdi.app
   ISSUER_SECRET=your-issuer-secret
   ```

After storing this details in .env they will be easily accessible in your code using `process.env.ISSUER_URL` and `process.env.ISSUER_SECRET` and you can use them in your CMD or terminal to interact with the Issuer service (to use it you muse run `source .env` in your terminal).

Next, we will upload a credential schema to let the Issuer know what kind of credentials we want to issue.


---

# 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.empe.io/getting-started/tutorial/deploying-issuer.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.
