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)
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
# syntaxis/.provctl/gen.toml
|
|
# Project-specific deployment generator configuration
|
|
#
|
|
# Overrides default provctl gen configuration for syntaxis project
|
|
# This allows syntaxis to customize:
|
|
# - Questions and default values for its specific services
|
|
# - Templates for syntaxis-specific code generation
|
|
# - Guideline validation paths
|
|
#
|
|
# Configuration precedence:
|
|
# 1. CLI arguments (highest priority)
|
|
# 2. This file: syntaxis/.provctl/gen.toml (project config)
|
|
# 3. ~/.config/provctl/gen/gen.toml (provctl defaults)
|
|
|
|
[gen.deployment]
|
|
# Override paths for syntaxis-specific configuration
|
|
# Note: All paths are relative to this file's directory (.provctl/)
|
|
|
|
# Use project-specific questions and values
|
|
questions_file = "gen/questions.toml"
|
|
values_file = "gen/values.toml"
|
|
|
|
# Use project-specific templates (with fallback to provctl defaults)
|
|
templates_dir = "gen/templates"
|
|
|
|
# Configuration directory for this project
|
|
config_dir = "gen"
|
|
|
|
# Syntaxis-specific guidelines
|
|
[gen.guidelines]
|
|
|
|
# Project-specific validation (optional future extension)
|
|
# syntaxis_specific_rules = "gen/syntaxis-validation.toml"
|