Merge _configs/ into config/ for single configuration directory. Update all path references. Changes: - Move _configs/* to config/ - Update .gitignore for new patterns - No code references to _configs/ found Impact: -1 root directory (layout_conventions.md compliance)
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
|