mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
19 lines
579 B
Plaintext
19 lines
579 B
Plaintext
# GitHub Secrets for Local Act Testing
|
|
# Copy this file to .secrets and fill in your values
|
|
# IMPORTANT: .secrets is git-ignored - never commit actual secrets!
|
|
|
|
# GitHub Personal Access Token (for GitHub API access)
|
|
# Create at: https://github.com/settings/tokens
|
|
# Required scopes: repo, workflow, read:org
|
|
GITHUB_TOKEN=ghp_your_personal_access_token_here
|
|
|
|
# Database Configuration (for local testing)
|
|
# Dev environments typically use SQLite
|
|
DATABASE_URL=file:./dev.db
|
|
|
|
# Node Environment
|
|
NODE_ENV=test
|
|
|
|
# Add any other secrets needed by your workflows here
|
|
# Format: KEY=value
|