20 lines
758 B
Plaintext
20 lines
758 B
Plaintext
# =============================================================================
|
|
# Woodpecker CI Environment Variables
|
|
#
|
|
# Copy this file to .env.ci and fill in the values
|
|
# =============================================================================
|
|
|
|
# Gitea OAuth Application (create in Gitea: Settings > Applications)
|
|
WOODPECKER_GITEA_URL=https://git.coppertone.tech
|
|
WOODPECKER_GITEA_CLIENT=your_gitea_oauth_client_id
|
|
WOODPECKER_GITEA_SECRET=your_gitea_oauth_client_secret
|
|
|
|
# Woodpecker Server URL (where CI will be accessible)
|
|
WOODPECKER_HOST=https://ci.coppertone.tech
|
|
|
|
# Agent secret (generate with: openssl rand -hex 32)
|
|
WOODPECKER_AGENT_SECRET=generate_this_with_openssl_rand_hex_32
|
|
|
|
# Admin user (your Gitea username)
|
|
WOODPECKER_ADMIN=administrator
|