Spaces:
Running
Running
File size: 551 Bytes
794cf6c db9635c 794cf6c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# 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
|