Skip to main content

Quickstart

Prerequisites

  • Docker + Docker Compose
  • Node 20+ (optional, only if you run services outside Docker)

Run in 5 minutes

git clone https://github.com/visiolab-studio/OpenArca.git
cd OpenArca
cp .env.example .env
cp backend/.env.example backend/.env
cp frontend/.env.example frontend/.env
docker compose up --build -d

Service URLs

  • App: http://localhost:3000
  • Backend health: http://localhost:4000/health
  • Mailpit: http://localhost:8025

Verify stack

docker compose ps
curl -s http://localhost:4000/health

Expected result:

  • backend, frontend, mailpit are healthy/running
  • /health returns JSON with status: "ok"