Implement .env configuration

This commit is contained in:
Jason Thistlethwaite
2026-04-27 22:52:27 +00:00
parent 16feb51b12
commit 324084d419
8 changed files with 259 additions and 9 deletions
+5 -3
View File
@@ -9,13 +9,15 @@ so use a firewall, VPN, or private network when exposing it beyond this machine.
## Start The Server
```bash
export VOIPMS_API_USERNAME='you@example.com'
export VOIPMS_API_PASSWORD='your-api-password'
export MCP_AUTH_TOKEN='choose-a-long-random-token'
cp .env-example .env
# Edit .env and optionally add MCP_AUTH_TOKEN='choose-a-long-random-token'
./bin/serve-mcp.sh
```
The launcher reads the project-root `.env` file when present. Already exported
environment variables take precedence over `.env` values.
Defaults:
```text