16 lines
620 B
Text
16 lines
620 B
Text
# Firefox AMO API credentials for web-ext signing
|
|
# Obtain from https://addons.mozilla.org/en-US/developers/addon/api/key/
|
|
AMO_JWT_ISSUER=your-amo-jwt-issuer
|
|
AMO_JWT_SECRET=your-amo-jwt-secret
|
|
|
|
# FTP/SFTP deploy (used by `npm run release:push`)
|
|
# Protocol: ftp (default), ftps, or sftp
|
|
FTP_PROTOCOL=ftp
|
|
FTP_HOST=your-ftp-host.example.com
|
|
# Port for ftp/ftps (21 for FTP/explicit FTPS, 990 for implicit FTPS)
|
|
# For sftp, omit or set 22
|
|
FTP_PORT=21
|
|
FTP_USER=your-ftp-username
|
|
FTP_PASS=your-ftp-password
|
|
# Remote directory to upload signed artifacts (e.g., /addons/archive-org-link-grabber/)
|
|
FTP_REMOTE_DIR=/path/on/server
|