Configuration Guide
export THESEUS_MAX_MEMORY=4096
###Cache Settings
Configure caching behavior:
# Set cache directoryexport THESEUS_CACHE_DIR=/path/to/cache# Set cache size limitexport THESEUS_CACHE_SIZE=1024
##Security Settings
###Access Control
Limit file access:
# Restrict to specific directoriesexport THESEUS_ALLOWED_PATHS=/path/to/projects# Block sensitive directoriesexport THESEUS_BLOCKED_PATHS=/path/to/sensitive
###API Security
Secure API usage:
# Enable secure modeexport THESEUS_SECURE_MODE=true# Set API request timeoutexport THESEUS_API_TIMEOUT=30
##Customization
###Custom Commands
Add custom commands in your configuration:
{
"customCommands": {
"myCommand": {
"script": "/path/to/script.sh",
"description": "Custom command description"
}
}
}
###Shortcuts
Configure keyboard shortcuts:
{
"shortcuts": {
"togglePanel": "cmd+shift+p",
"quickAction": "ctrl+space"
}
}
##Troubleshooting
###Configuration Validation
Verify your configuration:
theseus-tui verify-config
###Debug Mode
Enable debug logging:
export THESEUS_DEBUG=truetheseus-tui --debug
###Reset Configuration
Reset to default settings:
theseus-tui reset-config
##Next Steps
Review Basic Usage
Explore Features Overview
Check out the Quick Start Guide
Last updated