Heroku app 등록 요약
로그인
heroku login
샘플 프로젝트 복사
git clone https://github.com/heroku/python-getting-started.git
cd python-getting-started
앱 생성 및 이름 변경
Deploy the app
heroku create
heroku apps:rename NEWNAME
깃 업로드
gid add .
git commit -m "test"
git push heroku master
웹 생성 및 열기
heroku ps:scale web=1
heroku open
로컬에서 venv 활성화 후 사용
c:\python27\scripts\venv/Scripts/activate
외부 프로그램 설치
pip install -r requirements.txt --allow-all-external
쉘 명령 수행
heroku run python manage.py shell
db 싱크
heroku run python manage.py syncdb
heroku run python manage.py shell
기존에 개발된 소스를 헤로쿠와 연결하려면 아래와 같이 git remote 명령을 통해 기존 설정을 가져온다.
heroku git:remote --app kids-tv
heroku login
샘플 프로젝트 복사
git clone https://github.com/heroku/python-getting-started.git
cd python-getting-started
앱 생성 및 이름 변경
Deploy the app
heroku create
heroku apps:rename NEWNAME
깃 업로드
gid add .
git commit -m "test"
git push heroku master
웹 생성 및 열기
heroku ps:scale web=1
heroku open
로컬에서 venv 활성화 후 사용
c:\python27\scripts\venv/Scripts/activate
외부 프로그램 설치
pip install -r requirements.txt --allow-all-external
쉘 명령 수행
heroku run python manage.py shell
db 싱크
heroku run python manage.py syncdb
heroku run python manage.py shell
기존에 개발된 소스를 헤로쿠와 연결하려면 아래와 같이 git remote 명령을 통해 기존 설정을 가져온다.
heroku git:remote --app kids-tv
댓글
댓글 쓰기