Try It Yourself
🚀 Try SE-Coach Yourself
Interactive technical demonstrations and hands-on platform exploration
🏃♂️ Quick Start Demo
Get SE-Coach running in under 5 minutes with Docker.
Prerequisites: Docker Desktop or Docker Engine (20.10+), Docker Compose (2.0+)
1
Clone the repository
git clone https://github.com/placeholder/ProofMVP.git
cd ProofMVP
cd ProofMVP
2
Configure environment
# Copy environment template
cp .env.example .env
# Edit .env file - Add your AI provider API keys
# ANTHROPIC_API_KEY=your_key_here
# OPENAI_API_KEY=your_key_here
cp .env.example .env
# Edit .env file - Add your AI provider API keys
# ANTHROPIC_API_KEY=your_key_here
# OPENAI_API_KEY=your_key_here
3
Start all services
# Start entire platform
docker compose up -d
# Check service health
docker compose ps
docker compose up -d
# Check service health
docker compose ps
4
Verify deployment
# Test service endpoints
curl http://localhost:8000/api/v1/health # auth-api
curl http://localhost:8001/health # proof-graph
curl http://localhost:8003/health # gateway-api
# Access frontend
open http://localhost:5173
curl http://localhost:8000/api/v1/health # auth-api
curl http://localhost:8001/health # proof-graph
curl http://localhost:8003/health # gateway-api
# Access frontend
open http://localhost:5173