14 lines
358 B
Plaintext
14 lines
358 B
Plaintext
cat > config.env.example << 'EOF'
|
|
# Ruby gem setup
|
|
export GEM_HOME=$HOME/.gem
|
|
export PATH=$GEM_HOME/bin:$PATH
|
|
|
|
# API Keys
|
|
export ANTHROPIC_API_KEY="your-claude-api-key-here"
|
|
|
|
# Mastodon Bot Tokens
|
|
export ZPRAVOBOT_TOKEN="your-zpravobot-token-here"
|
|
export POZITIVNI_TOKEN="your-pozitivni-token-here"
|
|
export SARKASTICKY_TOKEN="your-sarkasticky-token-here"
|
|
EOF
|