···11# Authentication token (required)
22# Generate a strong random token for production use
33-AUTH_TOKEN=your-secret-token-here
33+OP_AUTH_TOKEN=your-secret-token-here
4455# Ollama server URL (optional, defaults to http://localhost:11434)
66-OLLAMA_URL=http://localhost:11434
66+OP_OLLAMA_URL=http://localhost:11434
7788# Proxy server port (optional, defaults to 11433)
99-PORT=11433
99+OP_PORT=11433
+1-1
Makefile
···99lint: ## Run linter
1010 golangci-lint run
11111212-run: ## Run the application (requires AUTH_TOKEN env var)
1212+run: ## Run the application (requires OP_AUTH_TOKEN env var)
1313 go run .
14141515clean: ## Remove build artifacts
+1-1
main.go
···28282929 token := os.Getenv(authEnv)
3030 if token == "" {
3131- log.Fatal("AUTH_TOKEN environment variable is required")
3131+ log.Fatalf("%s environment variable is required", authEnv)
3232 }
33333434 proxy, err := newProxy(ollamaURL)