UNPKG

atlassian-connect-express

Version:

Library for building Atlassian Add-ons on top of Express

17 lines (13 loc) 446 B
exports.productBaseUrl = "http://admin:admin@localhost:3001/confluence"; exports.addonPort = 3001; exports.addonBaseUrl = `http://localhost:${exports.addonPort}`; exports.installedPayload = { baseUrl: this.productBaseUrl, key: "my add-on key", clientKey: "clientKey", sharedSecret: "sharedSecret", publicKey: this.productPublicKey, eventType: "installed" }; // Allows us to run tests from a different dir process.chdir(__dirname);