-
Zendesk ZCLI React App 생성DEV/other things 2024. 6. 14. 14:04
1. libsecret 설치
https://seokbong.tistory.com/291
2. zendesk zcli 설치
// 설치 npm install @zendesk/zcli -g // 확인 zcli help
3. profile 등록
// 로그인 zcli login -i // 프로필 확인 zcli profiles:list // 프로필 변경 zcli profiles:use {subdomain}
4. Zendesk React App 설치
zcli apps:new --scaffold=react
5. Zendesk React App 실행 (Local)
// 빌드를 하기 위해 webpack 설치 (App 최상단 폴더에서) npm install --save-dev webpack webpack-cli // 빌드 npm run build // 시작 npm run start // (빌드 후 앱 패키징 >> dist 폴더 내 tmp에 압축 파일 생성됨) zcli apps:package dist
6. App Local Test (도메인 + ?zcli_apps=true)
https://{subdomain}.zendesk.com/agent/tickets/{123}?zcli_apps=true
7. 앱 업로드 / 업데이트
// 빌드한 앱 업로드 zcli apps:create ./dist // 빌드한 앱 업데이트 zcli apps:update ./dist
[2]. https://developer.zendesk.com/documentation/apps/getting-started/using-zcli/
[3]. https://developer.zendesk.com/documentation/apps/build-an-app/using-react-in-a-support-app/
'DEV > other things' 카테고리의 다른 글
Certbot을 통해 무료 SSL 발급받기(임시 및 갱신) (0) 2024.08.19 linux systemctl을 사용하지 못하는 경우 (0) 2024.08.13 libsecret install (0) 2024.06.14 Nginx 로그 설정 (0) 2024.06.11 Nginx, NodeJs CORS 에러 참고 사항 (0) 2024.06.11