Quick start
This guide will walk you through setting up a self-hosted instance of Crypitor for real-time blockchain event monitoring.
Last updated
This guide will walk you through setting up a self-hosted instance of Crypitor for real-time blockchain event monitoring.
Before you begin, ensure you have the following installed on your machine:
Docker
Docker Compose
First, clone the Crypitor repository from GitHub.
git clone https://github.com/crypitor/blockchain-webhookChange your directory to the app/docker folder within the cloned repository.
cd blockchain-webhook/app/dockerCopy the sample environment file .env.sample to .env and update it with your specific configuration.
cp .env.sample .envOpen the .env file in your preferred text editor and update the necessary variables. This file contains configuration settings that are crucial for running the application.
Use Docker Compose to build and start the application.
This command will start the Docker images (if not already built), create the necessary containers, and start the services in detached mode.
Once the application is running, you can access it via the URL specified in your .env file. Typically, it will be accessible at http://localhost:3000/ .
Access swagger document via http://localhost:3000/docswith admin and crypitor@2024
Last updated
# update your ETH_PROVIDER_URL
ETH_PROVIDER_URL=https://mainnet.infura.io/v3/yourkeydocker compose up -d