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:
parent
9b76d8f830
commit
566c78e767
2 changed files with 9 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -8,3 +8,4 @@
|
||||||
99-eulerpool
|
99-eulerpool
|
||||||
99-doffin
|
99-doffin
|
||||||
99-moment
|
99-moment
|
||||||
|
99-amo
|
||||||
|
|
|
||||||
8
99-amo.example
Normal file
8
99-amo.example
Normal 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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue