-
Notifications
You must be signed in to change notification settings - Fork 2
03 Quick Start Guide
Brady Mitchell edited this page Apr 17, 2024
·
3 revisions
Add import for the function you need from the Module Exports.
// ESModule import (preferred).
import { getIntegration } from '@bcgov/citz-imb-sso-css-api';
// CommonJS import.
const { getIntegration } = require('@bcgov/citz-imb-sso-css-api');
import { getIntegration } from '@bcgov/citz-imb-sso-css-api';
// Log integration details.
console.log(getIntegration());
Add the required environment variables from the Environment Variables section.
Return Home
Previous Page - Installing the Package
Next Page - Environment Variables