Some checks failed
CI/CD Pipeline / Test Suite (push) Has been cancelled
CI/CD Pipeline / Security Audit (push) Has been cancelled
CI/CD Pipeline / Performance Benchmarks (push) Has been cancelled
Rust CI / Security Audit (push) Has been cancelled
Rust CI / Check + Test + Lint (nightly) (push) Has been cancelled
Rust CI / Check + Test + Lint (stable) (push) Has been cancelled
CI/CD Pipeline / Build Docker Image (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / Cleanup (push) Has been cancelled
33 lines
826 B
TOML
33 lines
826 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"]
|