- Add Foundry project configuration (foundry.toml, foundry.lock) - Add Solidity contracts (TokenFactory138, BridgeVault138, ComplianceRegistry, etc.) - Add API definitions (OpenAPI, GraphQL, gRPC, AsyncAPI) - Add comprehensive test suite (unit, integration, fuzz, invariants) - Add API services (REST, GraphQL, orchestrator, packet service) - Add documentation (ISO20022 mapping, runbooks, adapter guides) - Add development tools (RBC tool, Swagger UI, mock server) - Update OpenZeppelin submodules to v5.0.0
14 lines
254 B
YAML
14 lines
254 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
swagger-ui:
|
|
build: .
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
- SWAGGER_PORT=8080
|
|
volumes:
|
|
- ../packages/openapi/v1/openapi.yaml:/app/packages/openapi/v1/openapi.yaml:ro
|
|
restart: unless-stopped
|
|
|