Repositories
All repositories live in the Azure DevOps project CuberTeam/TokeniseWorkSpace.
| Repository | Domain | Stack |
|---|---|---|
| Broker-Frontend | Broker | Next.js 15, yarn |
| Broker-Backend | Broker | .NET 9 API, Next.js admin (Admin/), design docs (documents/) |
| Exchange-Backend | Exchange | Go microservices, PostgreSQL, RabbitMQ |
| Exchange-AdminPanel | Exchange | Next.js 16, npm |
| CSD-Backend | CSD | Go microservices, PostgreSQL, RabbitMQ |
| CSD-AdminPanel | CSD | Next.js 16, npm |
| VeroCompliance | Compliance | .NET 10 API + worker, Next.js cockpit |
| VeroComplianceSDK | Compliance | React SDK (Vite, Vitest, Playwright) |
| NotificationService | Shared | Laravel 11, PHP 8.3, MySQL |
| Tokenise-Infrastructure | Shared | OpenTofu, Azure |
| TokeniseDoc | Shared | This site (Astro Starlight) |
Running locally
Section titled “Running locally”Several repositories include their own agent or contributor instructions (CLAUDE.md, AGENTS.md, .cursor/rules, .agents/rules). Read them before making changes.
Go backends (Exchange, CSD)
Section titled “Go backends (Exchange, CSD)”docker compose up -d --build # postgres, rabbitmq and all servicescd src && go build ./... && go vet ./... && go test ./...cd src && go test -tags=e2e ./... # e2e tests against the compose stackBroker-Backend
Section titled “Broker-Backend”dotnet test Backend/TKB.slndotnet run --project Backend/TKB.Apicd Admin && npm install && npm run devNext.js admin panels (Exchange, CSD)
Section titled “Next.js admin panels (Exchange, CSD)”npm installnpm run devnpm run lint && npm run typecheck && npm run buildBroker-Frontend
Section titled “Broker-Frontend”yarn installyarn devVeroCompliance
Section titled “VeroCompliance”cd backend && docker compose up -d --buildcd backend && dotnet test VeroCompliance.slnxcd frontend && npm install && npm run devNotificationService
Section titled “NotificationService”cp auth.json.example auth.json./vendor/bin/sail up -d --build./vendor/bin/sail artisan migrate:fresh --seed --forceTokenise-Infrastructure
Section titled “Tokenise-Infrastructure”export AZURE_CONFIG_DIR=~/.azure-tokenisescripts/preflight.sh devcd live/dev && tofu init && tofu plan