AMO_JWT_ISSUER and AMO_JWT_SECRET are used to sign HS256 JWTs for the Mozilla Add-ons API (Firefox extension upload/signing). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
8 lines
438 B
Text
8 lines
438 B
Text
# shellcheck shell=bash
|
|
# AMO (addons.mozilla.org) JWT credentials — used to sign API tokens for
|
|
# the Mozilla Add-ons API (e.g. uploading/signing Firefox extensions).
|
|
# See: https://addons-server.readthedocs.io/en/latest/topics/api/auth.html
|
|
# Copy to 99-amo and fill in your credentials, then: chmod 700 99-amo
|
|
#require_private "${BASH_SOURCE[0]}"
|
|
export AMO_JWT_ISSUER=your-jwt-issuer-here
|
|
export AMO_JWT_SECRET=your-jwt-secret-here
|