34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
// @ts-ignore
|
|
const port = window._env_?.REACT_APP_CREDENTIAL_ISSUANCE_SERVER_PORT || process.env.REACT_APP_CREDENTIAL_ISSUANCE_SERVER_PORT || "3001";
|
|
|
|
// @ts-ignore
|
|
const url = window._env_?.REACT_APP_CREDENTIAL_ISSUANCE_SERVER_URL || process.env.REACT_APP_CREDENTIAL_ISSUANCE_SERVER_URL || "http://localhost";
|
|
const endpoint = `${url}:${port}`;
|
|
|
|
const config = {
|
|
endpoint: endpoint,
|
|
endpoints: [endpoint],
|
|
port,
|
|
path: {
|
|
ping: "/ping",
|
|
getConnectionByDid: "/getConnectionByDid",
|
|
invitation: "/invitation",
|
|
credential: "/credential",
|
|
invitationWithCredential: "/offerCredentialWithConnection",
|
|
invitationWithCredentialConnectionless:
|
|
"/offerCredentialWithConnectionLess",
|
|
shorten: "/shorten/:id",
|
|
createShorten: "/shorten",
|
|
credentials: {
|
|
summit: "/credentials/schemas/summit/v1",
|
|
},
|
|
keriOobi: "/keriOobi",
|
|
issueAcdcCredential: "/issueAcdcCredential",
|
|
schemaOobi: "/oobi/:id",
|
|
contacts: "/contacts",
|
|
resolveOobi: "/resolveOobi",
|
|
requestDisclosure: "/requestDisclosure",
|
|
},
|
|
};
|
|
|
|
export { config }; |