Skip to content

Quick Start Guide

  • Docker & Docker Compose
  • Git
  • Make (optional convenience)
Terminal window
# Clone and deploy complete VoP environment
git clone <repository-url>
cd govop
make setup-epc-complete

This single command:

  • Generates SSL certificates
  • Builds Docker environment
  • Starts VoP + PostgreSQL + Redis
  • Imports 131+ EPC test cases
  • Runs validation tests

Primary endpoints:

Terminal window
# Basic API test
curl -X POST https://localhost:8443/api/v1/verify \
--cert client.crt --key client.key \
-H "Content-Type: application/json" \
-d '{"iban":"DE89370400440532013000","name":"John Smith"}'
# Run EPC compliance tests
make test-epc-https