-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.release.example
More file actions
39 lines (35 loc) · 1.64 KB
/
env.release.example
File metadata and controls
39 lines (35 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Copy this file to `.env` before running a live release:
# cp env.release.example .env
#
# Notes:
# - `./release.sh --dry-run` does not require `.env` or real credentials.
# - `./release.sh --yes` skips the interactive confirmation prompt.
# - `./release.sh --refresh-cws-token` opens OAuth Playground, updates `.env`,
# and refreshes `CWS_REFRESH_TOKEN` when the stored token is expired/revoked.
# - `GITHUB_TOKEN` is optional if git already has GitHub credentials configured.
#
# ============================================================================
# Chrome Web Store API Credentials
# ============================================================================
# Required for live release only.
# Get these from Google Cloud Console → OAuth 2.0 Client
# Guide: https://developer.chrome.com/docs/webstore/using-api
CWS_CLIENT_ID=
CWS_CLIENT_SECRET=
CWS_REFRESH_TOKEN=
# Chrome Web Store Extension ID (from Developer Dashboard URL)
CWS_EXTENSION_ID=
# Publisher ID (Developer Dashboard → Account → Publisher ID)
CWS_PUBLISHER_ID=
# ============================================================================
# tedaitesnim.com External API
# ============================================================================
# Required for live release only.
TEDAI_API_BASE_URL=https://www.tedaitesnim.com/api/external/v1
TEDAI_API_KEY=
TEDAI_EXTENSION_ID=2a9d2265-d127-4557-b237-3ac16200b137
# ============================================================================
# GitHub Release
# ============================================================================
# Optional. If unset, the script falls back to GH_TOKEN or stored git credentials.
GITHUB_TOKEN=