Rustelo/assets/example-init-config.toml

33 lines
826 B
TOML
Raw Normal View History

2026-02-08 20:18:46 +00:00
# Example Rustelo initialization configuration file
# Use this to avoid interactive prompts during project creation
# Template to use for initialization (optional, defaults to CLI argument)
template = "basic"
# Directory handling when target already exists
# Options: "merge", "replace", "cancel"
existing_directory_action = "merge"
# Skip all confirmations (assume yes for safety prompts)
auto_confirm = true
# Asset configuration
[assets]
# Source for templates: "remote", "local", or custom URL
source = "local"
# Directory to store assets in the project
download_location = ".rustelo-assets"
# Framework path (for local development)
framework_path = "../rustelo"
# Enable asset caching
cache_enabled = true
# Automatic updates on build
auto_update = true
# Notification methods
2026-02-08 20:37:49 +00:00
notification_methods = ["console"]