# Environment variables required by the gitea MCP server declared in # plugins/gitea/.mcp.json. apm passes these ${VAR} references through to the # deployed MCP config unexpanded; Claude Code resolves them from the process # environment at server startup. Neither value is ever committed to this repo. # # Nothing in this repo auto-loads a .env file -- apm has no dotenv support. # Copy this file to .env at the repo root, fill in real values, then export it # into your shell before starting Claude Code, e.g.: # # set -a; source .env; set +a # # Or skip the file and export the two variables directly in your shell # profile. Either way, never commit .env -- .gitignore already excludes it. # A Gitea access token, scoped to the repositories this agent should reach. # Generate one in Gitea under Settings > Applications. GITEA_ACCESS_TOKEN= # The base URL of your Gitea instance, including scheme. GITEA_HOST=https://