Some checks failed
Build - Verify Code & Build Binaries / Check Code Format (push) Has been cancelled
Build - Verify Code & Build Binaries / Lint with Clippy (push) Has been cancelled
Build - Verify Code & Build Binaries / Test Suite (push) Has been cancelled
Build - Verify Code & Build Binaries / Cargo Check (push) Has been cancelled
Build - Verify Code & Build Binaries / Security Audit (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Debug) - macos-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Debug) - ubuntu-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Debug) - windows-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Release) - macos-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Release) - ubuntu-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Release) - windows-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / All Checks Passed (push) Has been cancelled
CI/CD with Staging Preset / Validate Installation with Staging Preset (macos-latest) (push) Has been cancelled
CI/CD with Staging Preset / Validate Installation with Staging Preset (ubuntu-latest) (push) Has been cancelled
CI/CD with Staging Preset / Build and Test with Staging Preset (push) Has been cancelled
CI/CD with Staging Preset / Integration Test with Docker Compose (push) Has been cancelled
CI/CD with Staging Preset / Validate Documentation (push) Has been cancelled
CI/CD with Staging Preset / Test Summary (push) Has been cancelled
Provisioning Tests / Provisioning Tests (macos-latest) (push) Has been cancelled
Provisioning Tests / Provisioning Tests (ubuntu-20.04) (push) Has been cancelled
Provisioning Tests / Provisioning Tests (ubuntu-latest) (push) Has been cancelled
Provisioning Tests / Lint Provisioning Scripts (push) Has been cancelled
Provisioning Tests / Test Report (push) Has been cancelled
49 lines
965 B
Plaintext
49 lines
965 B
Plaintext
|
|
# provctl-config.toml
|
|
# Service orchestration configuration for myproject
|
|
# Generated by: provctl gen deployment
|
|
# Generated at: 2025-11-20
|
|
#
|
|
# Usage:
|
|
# provctl start --preset dev # Start dev preset services
|
|
# provctl start --service cli # Start specific service
|
|
# provctl status # Show running services
|
|
|
|
[project]
|
|
name = "myproject"
|
|
version = "1.0.0"
|
|
|
|
# Services managed by provctl
|
|
[services]
|
|
|
|
[services.myproject-cli]
|
|
enabled = true
|
|
type = "cli"
|
|
min_memory_mb = 64
|
|
min_disk_space_mb = 50
|
|
|
|
# Database configuration
|
|
[database]
|
|
default = "sqlite"
|
|
|
|
[database.sqlite]
|
|
type = "sqlite"
|
|
path = "/var/lib/myproject/db.sqlite"
|
|
|
|
# Cache configuration - to be configured by provctl
|
|
[cache]
|
|
enabled = false
|
|
|
|
|
|
# Logging and debugging
|
|
[logging]
|
|
level = "info"
|
|
format = "structured"
|
|
|
|
# Integration settings
|
|
[integration]
|
|
# Enable provisioning system integration
|
|
provisioning_enabled = true
|
|
# Enable dashboard integration
|
|
dashboard_enabled = true
|