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>
This commit is contained in:
Ole-Morten Duesund 2026-05-11 16:32:18 +02:00
commit 566c78e767
2 changed files with 9 additions and 0 deletions

1
.gitignore vendored
View file

@ -8,3 +8,4 @@
99-eulerpool 99-eulerpool
99-doffin 99-doffin
99-moment 99-moment
99-amo

8
99-amo.example Normal file
View file

@ -0,0 +1,8 @@
# 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