본문 바로가기

SW Dev Portfolio

HEROKU 배포 하는 방법

반응형

1. 일단 App 폴더 안에 client + server 폴더 

2. client -> npm run-script build

- build 폴더 생성 

3. server > 폴더 config + Model + Router + Util

 

4. index.js  와 Profile 는 App 폴더 아래에

5. Profile > web: node index.js 

6. HEROKU 

Install the Heroku CLI

Download and install the Heroku CLI.

If you haven't already, log in to your Heroku account and follow the prompts to create a new SSH public key.

$ heroku login

 

$ cd App
$ git init
$ heroku git:remote -a <app-name>

Deploy your changes

Make some changes to the code you just cloned and deploy them to Heroku using Git.

$ git add .
$ git commit -am "make it better"
$ git push heroku master or main

 

핵심은 ! 나는 배포를 해도 에러가 나서 그냥 애당초 node_modules 삭제하고 배포하니까 정상적으로 배포가 되었다 

그리고 push는 main 으로 했다 

반응형