bash.d/99-amo.example
Ole-Morten Duesund 566c78e767 Add AMO (addons.mozilla.org) JWT credential template and gitignore entry
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>
2026-05-11 16:32:18 +02:00

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