11 lines
493 B
Bash
11 lines
493 B
Bash
# Copy this file to .env.local and fill in your values.
|
|
# .env.local is gitignored and never committed.
|
|
|
|
# Gitea HTTP API base URL for this repo (no trailing slash)
|
|
# Example: http://192.168.1.208:3000/api/v1/repos/kasun/homelab-infrastructure-as-code
|
|
GITEA_API_URL=http://<your-gitea-host>/api/v1/repos/<owner>/<repo>
|
|
|
|
# Gitea personal access token with read/write Actions Secrets permission
|
|
# Generate at: Gitea → Settings → Applications → Access Tokens
|
|
GITEA_TOKEN=<your-gitea-token>
|