This template provides all the general components and types to build IVR applications.
npm install illumia-design-systemThis template provides all the general components and types to build IVR applications.
``bash`
npm install
`bash`
npm run build
1. Run the ACP Credentials shell file
`bash`
sh acp_credentials.sh
And then, copy the credentials to your clipboard and paste it on the terminal.
2. CodeArtifact Login
`bash`
aws codeartifact login --tool npm --repository npm-frontend --domain ivr-libs --domain-owner 474190452646 --region us-east-1
PS: Run it at the same terminal on the previous step.
3. Generate the CODEARTIFACT_AUTH_TOKEN
`bash`
aws codeartifact get-authorization-token \
--domain ivr-libs \
--domain-owner 474190452646 \
--region us-east-1 \
--query authorizationToken --output text
And then, copy the token to your clipboard and set at the export variable on your terminal:
`bash`
export CODEARTIFACT_AUTH_TOKEN="
4. Install package
`bash`
npm install @accenture/ivr-ds
1. Export AWS Credentials (Found "Access key ID" and "Secret access key" on AWS DevOps Account menu)
`bash`
export AWS_ACCESS_KEY_ID="
export AWS_SECRET_ACCESS_KEY="
export AWS_SESSION_TOKEN="
2. CodeArtifact Login
`bash`
aws codeartifact login --tool npm --repository npm-frontend --domain illumia-libs --domain-owner 843303282041 --region us-east-1
PS: Run it at the same terminal on the previous step.
3. Generate the CODEARTIFACT_AUTH_TOKEN
`bash`
aws codeartifact get-authorization-token \
--domain illumia-libs \
--domain-owner 843303282041 \
--region us-east-1 \
--query authorizationToken --output text
4. Set the CODEARTIFACT_AUTH_TOKEN
`bash`
export CODEARTIFACT_AUTH_TOKEN="
5. Install package
`bash`
npm install illumia-design-system
`tsx
import { Navbar } from '@accenture/ivr-ds';
function App() {
return (
);
}
`
`tsx
import { Navbar } from 'illumia-design-system';
function App() {
return (
);
}
``
MIT