# 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 # SSL Certificate Configuration # Extra CA certs for servers with incomplete certificate chains (e.g., missing Let's Encrypt intermediate) # See README.md "SSL Certificate Chain Fix" section for setup instructions NODE_EXTRA_CA_CERTS=/home/claude/.config/agent-manager/certs/extra-ca.pem # Node Environment NODE_ENV=production # 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 # 5. For SSL cert setup, run: mkdir -p ~/.config/agent-manager/certs && see README.md