Static web site for contract call with ABI and contract address.
yarn
yarn serve
yarn build
docker build -t inspector-app .
docker run -dp 127.0.0.1:8080:80 inspector-app
or with docker compose
docker compose up -d --build
Create a .env file with the url of the solo node you want to connect
VUE_APP_SOLO_URL=http://localhost:8080
We can provide runtime env variables using -e
docker run ghcr.io/vechain/insight-app:master -e VUE_APP_SOLO_URL=http://localhost:8080
docker build -t inspector-app
docker run -e VUE_APP_SOLO_URL=http://localhost:8080
Use the image and pass the env variable in the compose file directly
version: "3.7"
services:
insight:
image: ghcr.io/vechain/inspector-app:master
hostname: inspector
container_name: inspector
environment:
- VUE_APP_SOLO_URL=http://localhost:8669
ports:
- "8080:80"
Everyone is always welcome to contribute on the codebase.
Ralph is a script that runs Claude autonomously to implement features from a PRD (Product Requirements Document).
- Describe the feature you want to implement
- Run
/prd- Creates detailed PRD markdown intasks/prd-[feature-name].md- Asks clarifying questions first
- Generates user stories with acceptance criteria
- Run
/ralph- Converts PRD toprd.jsonformat- Archives previous prd.json/progress.txt if different feature
- Resets
progress.txtto empty - Creates
prd.jsonwith stories ready for execution
- Run Ralph in a new terminal tab:
./ralph.sh 10
- Wait for completion - Ralph implements each story and commits
{
"project": "Feature Name",
"stories": [
{
"id": "US-001",
"title": "Story title",
"description": "Detailed description of what needs to be done",
"priority": 1,
"passes": false,
"notes": ""
}
]
}- priority: Lower number = higher priority (1 is first)
- passes: Set to
falseinitially, Ralph sets totruewhen done - notes: Ralph fills this with implementation details
Each iteration:
- Find highest-priority story with
passes: false - Implement the feature
- Run type checks (
yarn typecheck) - Update
prd.json: setpasses: trueand add notes - Append progress to
progress.txt - Create a git commit
Stops when all stories have passes: true or iterations exhausted.