Spaces:
Running
Running
# Configuration | |
Application configuration and constants | |
## Purpose | |
- Centralize configuration values | |
- Keyboard shortcuts registry | |
## Layout | |
``` | |
config/ | |
βββ context.md # This file | |
βββ shortcuts.ts # Keyboard shortcut definitions | |
``` | |
## Scope | |
- In-scope: Static configuration, constants | |
- Out-of-scope: Runtime state, business logic | |
## Entrypoints | |
- `shortcuts` - Keyboard shortcut definitions | |
- `registerShortcuts()` - Setup keyboard handlers | |
## Dependencies | |
- No external dependencies | |
- Imported by components and services | |