Browse Source
- Add progress tracking to show n/total events during publishing - Display progress bar beneath editor controls in ZettelEditor - Add VITE_MOCK_PUBLISH env variable for testing UI without publishing - Mock mode simulates network delay (300-500ms) and generates fake event IDs - Progress updates after each event publishes in both article and scattered notes modes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>master
4 changed files with 73 additions and 1 deletions
@ -0,0 +1,14 @@ |
|||||||
|
# Alexandria Environment Variables |
||||||
|
|
||||||
|
# Enable mock data for development/testing |
||||||
|
# Set to "true" to use lorem ipsum test comments instead of fetching from relays |
||||||
|
VITE_USE_MOCK_COMMENTS=true |
||||||
|
|
||||||
|
# Set to "true" to use position-based test highlights instead of fetching from relays |
||||||
|
VITE_USE_MOCK_HIGHLIGHTS=true |
||||||
|
|
||||||
|
# Set to "true" to mock event publishing (no actual relay publishing, useful for testing UI) |
||||||
|
VITE_MOCK_PUBLISH=true |
||||||
|
|
||||||
|
# Enable debug logging for relay connections |
||||||
|
DEBUG_RELAYS=false |
||||||
Loading…
Reference in new issue