개요 자체 서명 인증서를 사용하는 사내망에 quasar를 사용하여 프로젝트 생성 시 발생한 오류를 해결한 과정을 작성합니다. 오류 $ quasar create myapp ___ / _ \ _ _ __ _ ___ __ _ _ __ | | | | | | |/ _` / __|/ _` | '__| | |_| | |_| | (_| \__ \ (_| | | \__\_\\__,_|\__,_|___/\__,_|_| Quasar CLI · Failed to download repo quasarframework/quasar-starter-kit#master: self signed certificate in certificate chain 해결 템플릿 파일을 git clone을 사용하여 로컬환경으로 다운로드한 후, ..
self signed certificate
개요 자체 서명 인증서를 사용하는 사내망에서 quasar를 사용하여 android app을 빌드하는 과정에서 발생한 오류를 해결한 과정을 작성합니다. 오류 C:\Users\user\myapp>quasar build -m capacitor -T android ... 생략 ... Downloading https://services.gradle.org/distributions/gradle-5.6.4-all.zip Exception in thread "main" javax.net.ssl.SSLHandshakeException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find va..
개요 자체 서명 인증서를 사용하는 사내망에서 git clone 사용 시 발생한 오류를 해결한 과정을 작성합니다. 오류 > C:\Users\user>git clone https://github.com/quasarframework/quasar-starter-kit.git Cloning into 'quasar-starter-kit'... fatal: unable to access 'https://github.com/quasarframework/quasar-starter-kit.git/': SSL certificate problem: self signed certificate in certificate chain 해결 git config --global http.sslVerify f..
개요 자체 서명 인증서를 사용하는 사내망에 nativescript-vue 개발환경 구축 과정에서 템플릿 다운로드 시 발생한 오류를 해결한 과정을 작성합니다. 오류 $ vue init nativescript-vue/vue-cli-tempate myapp vue-cli · Failed to download repo nativescript-vue/vue-cli-tempate: self signed certificate in certificate chain 해결 템플릿 파일을 git clone을 통해 로컬 영역에 다운로드한 후, 해당 템플릿을 이용하여 초기화를 합니다. cd ~ git clone https://github.com/nativescript-vue/vue-cli-template ~/.vue-templ..
개요 자체 서명 인증서를 사용하는 사내망에 flutter 개발환경 구축 과정에서 발생한 오류를 해결한 과정을 작성합니다. 오류 윈도우즈 환경에 flutter를 설치 후, doctor 명령을 사용하여 진단 시 오류가 발생합니다. > flutter doctor VersionCheckError: Command exited with code 128: git fetch __flutter_version_check__ stable Standard error: fatal: unable to access 'https://github.com/flutter/flutter.git/': SSL certificate problem: self signed certificate in certificate chain 해..