-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient_env.example.sh
More file actions
22 lines (19 loc) · 863 Bytes
/
Copy pathclient_env.example.sh
File metadata and controls
22 lines (19 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env bash
# Optional shell exports for local client-side development.
# The primary SkillClaw client config lives in ~/.skillclaw/config.yaml.
#
# Typical usage:
# cp client_env.example.sh client_env.local.sh
# source client_env.local.sh
#
# These values are environment fallbacks and teammate-friendly examples.
# They are not the evolve server's `EVOLVE_STORAGE_*` settings.
export OPENAI_BASE_URL="https://your-model-gateway.example/v1"
export OPENAI_API_KEY="your-openai-api-key"
# Convenience values for shared-skill setup discussions or local wrappers.
export OSS_ENDPOINT="https://oss-cn-hangzhou.aliyuncs.com"
export OSS_BUCKET="skillclaw-shared-skills"
export OSS_ACCESS_KEY_ID="your-oss-access-key-id"
export OSS_ACCESS_KEY_SECRET="your-oss-access-key-secret"
export OSS_GROUP_ID="your-group-id"
export OSS_USER_ALIAS="your-user-alias"