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