23 lines
704 B
Bash
23 lines
704 B
Bash
# Verstak Firefox Extension — environment template
|
|
# Copy to .env and fill in real values.
|
|
# DO NOT commit .env — it contains AMO secrets.
|
|
|
|
# AMO API credentials (from https://addons.mozilla.org/developers/)
|
|
WEB_EXT_API_KEY=
|
|
WEB_EXT_API_SECRET=
|
|
|
|
# Build channel: "unlisted" for self-distributed builds
|
|
WEB_EXT_CHANNEL=unlisted
|
|
|
|
# Source directory for the Firefox extension
|
|
WEB_EXT_SOURCE_DIR=extension-firefox
|
|
|
|
# Output directory for signed XPI artifacts
|
|
WEB_EXT_ARTIFACTS_DIR=web-ext-artifacts
|
|
|
|
# Base URL for Firefox self-hosted updates
|
|
VERSTAK_FIREFOX_UPDATE_BASE_URL=https://mirv.top/verstak/firefox
|
|
|
|
# Optional: HTTP proxy for AMO API requests (e.g. http://localhost:12334)
|
|
# WEB_EXT_API_PROXY=
|