Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:49:56 +08:00
commit a250e458a9
14 changed files with 1221 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# Configuration
## Environment Variables
- `DOC_SYNC_HOST` - Server hostname (default: `localhost`)
- `DOC_SYNC_PORT` - Server port (default: `8766`)
- `DOC_SYNC_SCHEME` - http or https (default: `http`)
## Example (only when overriding defaults is needed!!!)
```bash
DOC_SYNC_HOST=example.com DOC_SYNC_PORT=443 DOC_SYNC_SCHEME=https \
uv run commands/doc-push file.txt
```