-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
18 lines (17 loc) · 818 Bytes
/
.env.example
File metadata and controls
18 lines (17 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# GitHub Personal Access Token (PAT) for authenticating API requests and Git operations.
#
# Required scopes:
# - repo (full control of private repositories — needed to clone/fetch private repos)
# - read:org (read-only access to organization membership — needed to discover org repos)
#
# To create a PAT:
# 1. Go to https://github.com/settings/tokens
# 2. Click "Generate new token (classic)"
# 3. Select the 'repo' and 'read:org' scopes
# 4. Copy the generated token and paste it below
#
# Usage:
# Copy this file to .env and replace the placeholder with your real token.
# The .env file is gitignored to prevent accidental commit of secrets.
# Alternatively, export the variable in your shell: export GITHUB_MIRROR_PAT=ghp_...
GITHUB_MIRROR_PAT=ghp_YOUR_PERSONAL_ACCESS_TOKEN_HERE