Manifest Editor
Create and validate environment manifests
Validate
Save Manifest
manifest.yaml
YAML
44 lines
schemaVersion: "1.0.0" name: my-test-environment description: A test environment for API testing services: - id: api image: node tag: "20-alpine" command: ["node", "server.js"] env: NODE_ENV: test PORT: "3000" ports: - container: 3000 host: 3000 healthCheck: test: ["CMD", "curl", "-f", "http://localhost:3000/health"] interval: 5000 timeout: 2000 retries: 3 dependsOn: - postgres - id: postgres image: postgres tag: "16-alpine" env: POSTGRES_DB: testdb POSTGRES_USER: testuser POSTGRES_PASSWORD: testpass healthCheck: test: ["CMD-SHELL", "pg_isready -U testuser"] interval: 5000 timeout: 2000 retries: 5 tests: - id: health-check name: API Health Check command: "curl -f http://api:3000/health" dependsOn: - api timeout: 30000
Validation
✓
Manifest is valid
Preview
Name:
my-test-environment
Services:
2
Tests:
1
Actions
Start Run
Export to CI