- Remove executable permissions from configuration files (.editorconfig, .env.example, .gitignore) - Remove executable permissions from documentation files (README.md, LICENSE, SECURITY.md) - Remove executable permissions from web assets (HTML, CSS, JS files) - Remove executable permissions from data files (JSON, SQL, YAML, requirements.txt) - Remove executable permissions from source code files across all apps - Add executable permissions to Python
30 lines
476 B
YAML
30 lines
476 B
YAML
# AITBC CLI Configuration File
|
|
# Default configuration for AITBC CLI
|
|
|
|
# Coordinator API settings
|
|
coordinator_url: http://localhost:8000
|
|
api_key: null
|
|
|
|
# Output settings
|
|
output_format: table
|
|
timeout: 30
|
|
|
|
# Logging
|
|
log_level: INFO
|
|
|
|
# Wallet settings
|
|
default_wallet: default
|
|
wallet_dir: ~/.aitbc/wallets
|
|
|
|
# Blockchain settings
|
|
chain_id: mainnet
|
|
|
|
# Marketplace settings
|
|
default_region: localhost
|
|
|
|
# Analytics settings
|
|
analytics_enabled: true
|
|
|
|
# Security settings
|
|
verify_ssl: true
|