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
-----BEGIN CERTIFICATE----- | |
MIIE0DCCA7igAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx | |
EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT | |
EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp | |
ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTExMDUwMzA3MDAwMFoXDTMxMDUwMzA3 | |
MDAwMFowgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH | |
EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UE | |
CxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQD | |
EypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEi | |
MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC54MsQ1K92vdSTYuswZLiBCGzD |
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
#!/bin/bash | |
# install_claude_code.sh - Installation script for Claude Code CLI | |
# | |
# This script handles the installation of Claude Code, including: | |
# - Installing npm if needed | |
# - Installing Claude Code CLI | |
# - Setting up configuration | |
# - Installing required certificates | |
# - Configuring environment variables |
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
{ | |
"enableAllProjectMcpServers": false, | |
"env": | |
{ | |
"ANTHROPIC_BEDROCK_BASE_URL": "https://litellm.final.co.il/bedrock", | |
"ANTHROPIC_MODEL": "us.anthropic.claude-3-7-sonnet-20250219-v1:0", | |
"ANTHROPIC_SMALL_FAST_MODEL": "us.anthropic.claude-3-7-sonnet-20250219-v1:0", | |
"ANTHROPIC_AUTH_TOKEN": "enter_your_litellm_auth_token", | |
"CLAUDE_CODE_CKIP_BEDROCK_AUTH": 1, | |
"CLAUDE_CODE_USE_BEDROCK": 1, |
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
import openstack | |
# connecting to openstack: | |
# cloud stack yaml: first: local dir -> second: cloud/config -> finally: /etc/openstack... | |
# ~/python3_venv/openstack/lib/python3.8/site-packages/openstack/config/vendors/clouds.yaml | |
conn = openstack.connect(cloud='ois2022', | |
region_name='Fral') | |
# another option is to source config file (RC) as follows: |