Zero-Config First
cascadeflow automatically detects common enterprise environment variables:| Variable | Purpose |
|---|---|
HTTPS_PROXY, HTTP_PROXY | Proxy configuration |
SSL_CERT_FILE | Custom CA certificate bundle |
REQUESTS_CA_BUNDLE, CURL_CA_BUNDLE | Alternate CA bundle paths |
NO_PROXY | Bypass rules |
Explicit HTTP Configuration
For explicit control, useHttpConfig in Python or httpConfig in TypeScript.
Python
TypeScript
Enterprise Guidance
- Prefer CA bundles over disabling SSL verification.
- Keep proxy credentials out of source code.
- Treat network configuration as deployment config, not app logic.