mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 05:43:55 +00:00
15 lines
498 B
Bash
15 lines
498 B
Bash
#!/bin/bash
|
|
# ToothFairyAI dev environment setup for tfcode
|
|
|
|
export TF_WORKSPACE_ID="6586b7e6-683e-4ee6-a6cf-24c19729b5ff"
|
|
export TF_API_KEY="EWZooLROIS57EVW3BKGu7Pv6LNe4D6m4gkDjukx3"
|
|
export TF_REGION="dev"
|
|
|
|
echo "ToothFairyAI environment configured:"
|
|
echo " Workspace: $TF_WORKSPACE_ID"
|
|
echo " Region: $TF_REGION"
|
|
echo ""
|
|
echo "Run tfcode commands:"
|
|
echo " tfcode validate - Test credentials"
|
|
echo " tfcode sync - Sync tools from workspace"
|
|
echo " tfcode tools list - List synced tools" |