27 lines
898 B
Bash
27 lines
898 B
Bash
# Copy to .env and adjust. Every value except the OAuth pair has a working
|
|
# default for a throwaway local demo, so the quickstart runs without edits.
|
|
|
|
MYSQL_ROOT_PASSWORD=warpengine
|
|
|
|
# Shared secret for the /build/* endpoints (X-Update-Secret header).
|
|
UPDATE_SECRET=example-update-secret
|
|
|
|
# Published ports.
|
|
APP_PORT=8080
|
|
GITEA_SSH_PORT=2223
|
|
|
|
# --- profile "ci" only -------------------------------------------------------
|
|
|
|
WOODPECKER_AGENT_SECRET=example-agent-secret
|
|
|
|
# OAuth2 application created in gitea (Settings -> Applications), redirect URI
|
|
# http://woodpecker:8000/authorize — required before the ci profile starts.
|
|
WOODPECKER_GITEA_CLIENT=
|
|
WOODPECKER_GITEA_SECRET=
|
|
|
|
# Woodpecker management (repo sync, secret provisioning, pipeline control).
|
|
# Generate a PAT in Woodpecker: profile → Personal Token.
|
|
WOODPECKER_URL=http://woodpecker:8000
|
|
WOODPECKER_API_TOKEN=
|
|
WOODPECKER_REPO_OWNER=
|