본문 바로가기

Deploy

(3)
[#. Heroku] Heroku로 Node 배포하기 Node backend, React frontend로 개발한 프로젝트에서 Node를 Heroku에서 배포해 보자 ① Heroku 계정 생성 heroku.com/ Cloud Application Platform | Heroku Heroku is a platform as a service (PaaS) that enables developers to build, run, and operate applications entirely in the cloud. www.heroku.com ② Node package.json 파일 수정 ... "scripts": { "start": "node index.js"// 추가 }, ... ③ Heroku에서 create new app ⑴ 터미널에서 앱 생성 heroku cre..
[#. SpringBoot] IntelliJ에서 SpringBoot 실행 시, finished with non-zero exit value 에러 해결 어쩌다 보니 backend를 SpringBoot로 돌려야 하는 일이 생겼다 일단 IntelliJ를 설치했고 git에서 코드를 clone 해왔다 ① git clone git 주소를 입력한다 ② build.gradle => Build Module 이때, 에러가 발생한다 @ finished with non-zero exit value 에러 해결 Build : failed :appNpmInstall Process 'command 'npm'' finished with non-zero exit value 254 ⑴ 상단 탭에서 IntelliJ IDEA=>Preferences 클릭 ⑵ Build, Execution, Deployment=>Build Tools=>Gradle 클릭 Build and run using: ..
[#. Netlify] Netlify로 정적인 static frontend 코드 웹에 배포하기 Expo로 apk을 추출하려고 간단한 웹페이지를 하나 만들었다 근데 Node에 올리기보다는 쉽고 간단하게 웹에 배포하고 싶다 이때 사용할 수 있는 게 Netlify다 static한 frontend 코드 작성 -> Netlify로 웹에 배포 -> Webview로 apk 생성 www.netlify.com/ Netlify: All-in-one platform for automating modern web projects Deploy modern static websites with Netlify. Get CDN, Continuous deployment, 1-click HTTPS, and all the services you need. Get started for free. www.netlify.com ① 사이..