syntaxis/config/provctl/templates/provctl-config-toml-j2.j2

62 lines
1.1 KiB
Plaintext
Raw Normal View History

# 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
[services.myproject-dashboard]
enabled = true
type = "web"
min_memory_mb = 128
min_disk_space_mb = 50
requires = ["api"]
# Database configuration
[database]
default = "sqlite"
[database.sqlite]
type = "sqlite"
path = "/var/lib/myproject/db.sqlite"
# Cache configuration - to be configured by provctl
{%- if deployment.cache_enabled %}
[cache]
enabled = true
{%- else %}
[cache]
enabled = false
{%- endif %}
# Logging and debugging
[logging]
level = "info"
format = "structured"
# Integration settings
[integration]
# Enable provisioning system integration
provisioning_enabled = true
# Enable dashboard integration
dashboard_enabled = true