global-env.example 804 B

123456789101112131415161718
  1. # Global .env file for agent-manager client
  2. # Location: ~/.config/agent-manager/.env
  3. #
  4. # This file provides global environment variables that apply to all cloned repositories.
  5. # Repository-specific .env files can override these values.
  6. #
  7. # Required for Gogs API access (used by gogs-helper.ts before MCP initialization)
  8. GOGS_ACCESS_TOKEN=your-gogs-access-token-here
  9. GOGS_BASE_URL=https://git.smartbotics.ai
  10. # Optional: Path to gogs-mcp server (defaults to /data/gogs-mcp/dist/index.js)
  11. GOGS_MCP_PATH=/data/gogs-mcp/dist/index.js
  12. # Notes:
  13. # 1. Create this file at: ~/.config/agent-manager/.env
  14. # 2. Copy this example and fill in your actual values
  15. # 3. Ensure proper permissions: chmod 600 ~/.config/agent-manager/.env
  16. # 4. Repository-specific .env files (in each cloned repo) can override these values