@transcend-io/typescript-webhook-example
Version:
Example of a webhook that can be integrated with Transcend.
10 lines • 627 B
JavaScript
var _a;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MEDIA_FOLDER = exports.PORT = exports.SOMBRA_URL = exports.AUDIENCE = exports.SOMBRA_API_KEY = exports.TRANSCEND_API_KEY = void 0;
const path = require('path');
_a = process.env, exports.TRANSCEND_API_KEY = _a.TRANSCEND_API_KEY, exports.SOMBRA_API_KEY = _a.SOMBRA_API_KEY, exports.AUDIENCE = _a.AUDIENCE;
exports.SOMBRA_URL = process.env.SOMBRA_URL || 'https://multi-tenant.sombra.transcend.io';
exports.PORT = process.env.PORT || 8081;
exports.MEDIA_FOLDER = path.join(__dirname, '..', 'media');
//# sourceMappingURL=constants.js.map
;