This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Claude Code CLI Environment Variables | |
| # This file lists all environment variables used in v2.1.202 with explanations | |
| ## Anthropic API & Authentication | |
| ANTHROPIC_API_KEY - Primary API key for Anthropic's Claude API; used as an auth source (source "ANTHROPIC_API_KEY") when no OAuth token is configured | |
| ANTHROPIC_AUTH_TOKEN - Alternative bearer token for Anthropic services; sent as Authorization: Bearer and takes priority over ANTHROPIC_API_KEY, also used with gateway mode | |
| ANTHROPIC_BASE_URL - Custom base URL for the Anthropic API; overrides the default api.anthropic.com endpoint (a non-api.anthropic.com host marks the client as non-first-party) | |
| ANTHROPIC_BETAS - Comma-separated list of beta feature headers appended (trimmed, non-empty) to the internal beta flags on API requests | |
| ANTHROPIC_CUSTOM_HEADERS - Custom HTTP headers for API requests, parsed as newline-separated "Key: Value" pairs |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| # Playbook generates key, CSR and self-signed SSL certificates for CA and domain of interest | |
| # | |
| # To run (replace with your own values): | |
| # ``` | |
| # ansible-playbook \ | |
| # --extra-vars 'cert_common_name=domain.example.com' \ | |
| # --extra-vars '{"cert_subject_alt_name":["DNS:*.example.com","DNS:*.subdomain.example.com"]}' \ | |
| # generate_ssl_keys_csr_certificates.yml | |
| # ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Build Python 3.5 conda package for cx_oracle 5.2.1 on Linux | |
| # Currently(2016-07-09) only cx_oracle-5.1.2-py27 is avalible in the conda repository. | |
| # | |
| # Based on http://conda.pydata.org/docs/build_tutorials/pkgs.html | |
| # | |
| # Build environment: Ubuntu 16.04 with Anaconda3-4.1.1-Linux-x86_64 installed in $HOME/anaconda3 | |
| # | |
| # Download from http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html | |
| # - instantclient-basic-linux.x64-12.1.0.2.0.zip | |
| # - instantclient-sdk-linux.x64-12.1.0.2.0.zip |