Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/tools/validproof/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down