mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 04:09:06 +00:00
25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
# Example secrets file for GitHub Actions workflows
|
|
# Copy this to .secrets and fill in your values
|
|
# These secrets should be configured in GitHub repository settings:
|
|
# Settings > Secrets and variables > Actions
|
|
|
|
# DockerHub Configuration (required for frontend and backend deployment)
|
|
# Create a Docker Hub access token at https://hub.docker.com/settings/security
|
|
# Username: monadicalsas
|
|
DOCKERHUB_TOKEN=your-dockerhub-access-token
|
|
|
|
# GitHub Token (required for frontend and backend deployment)
|
|
# Used by docker/metadata-action for extracting image metadata
|
|
# Can use the default GITHUB_TOKEN or create a personal access token
|
|
GITHUB_TOKEN=your-github-token-or-use-default-GITHUB_TOKEN
|
|
|
|
# Coolify Deployment Webhook (required for frontend deployment)
|
|
# Used to trigger automatic deployment after image push
|
|
# Configure these secrets in GitHub Environments:
|
|
# Each environment should have:
|
|
# - COOLIFY_WEBHOOK_URL: The webhook URL for that specific deployment
|
|
# - COOLIFY_WEBHOOK_TOKEN: The webhook token (can be the same for both if using same token)
|
|
|
|
# Optional: GitHub Actions Cache Token (for local testing with act)
|
|
GHA_CACHE_TOKEN=your-github-token-or-empty
|