Refactor config to use GITEA_BASE_URL
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 37s

This commit is contained in:
Ben
2026-01-01 05:23:00 +00:00
parent a152406475
commit 59c50c4cde
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ Create a `.env` file with the following variables:
| Variable | Required | Description | Default |
| :--- | :--- | :--- | :--- |
| `GITEA_TOKEN` | **Yes** | A Gitea Access Token. Required permissions: `repository` (Read), `issue` (Read and Write). | |
| `GITEA_API_URL` | No | Full URL to your Gitea API (e.g., `http://gitea:3000/api/v1`). | |
| `GITEA_BASE_URL` | No | Base URL of your Gitea instance (e.g., `http://gitea:3000` or `https://git.example.com`). | |
| `PORT` | No | Host port to expose the webhook server on. | `3000` |
| `OPENAI_API_KEY` | **Yes** | API Key for your LLM provider. Use `dummy` for local models if no auth needed. | |
| `OPENAI_BASE_URL` | No | Base URL for the LLM API. Set this for Ollama/vLLM (e.g. `http://host.docker.internal:11434/v1/`). | `https://api.openai.com/v1/` |

View File

@@ -17,7 +17,7 @@ services:
# VCS Config
- VCS__PROVIDER=GITEA
- VCS__HTTP_CLIENT__API_TOKEN=${GITEA_TOKEN}
- VCS__HTTP_CLIENT__API_URL=${GITEA_API_URL:-http://gitea-server:3000/api/v1/}
- VCS__HTTP_CLIENT__API_URL=${GITEA_BASE_URL:-http://gitea-server:3000}/api/v1/
volumes:
- xai-cache:/root/.cache