32 lines
825 B
TOML
32 lines
825 B
TOML
|
|
# 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
|
||
|
|
notification_methods = ["console"]
|