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
|