From 5f4276ef7b7324678c42a2933dd8a9dc4343f9e7 Mon Sep 17 00:00:00 2001 From: Carlos Date: Mon, 10 Nov 2025 11:37:25 +0100 Subject: [PATCH] Modify valid proof documentation --- docs/tools/validproof/setup.mdx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/tools/validproof/setup.mdx b/docs/tools/validproof/setup.mdx index e4402c42..4261e547 100644 --- a/docs/tools/validproof/setup.mdx +++ b/docs/tools/validproof/setup.mdx @@ -39,6 +39,22 @@ yarn start 5. Open your web browser and visit `http://localhost:3000` to view the website. +## API key + +To access Bloock services, you need to set up an API key. You can do this by following [this guide](https://docs.bloock.com/guides/platform/create-api-key/). + +In your project directory, create a `.env` file. This file will store the environment variables required for the service. Each variable should be defined using the following format: + +``` +VARIABLE_NAME=VALUE +``` + +In this case, the environment variable for the API key should be named `VITE_API_KEY`. Here's an example of how your `.env` file might look: + +``` +VITE_API_KEY=[YOUR API KEY] +``` + ## Deployment To deploy the website, follow these steps: