{ Pythonanywhere }

  • 장고 - Pythonanywhere 이용한 배포

    |

    1. Github 업로드

    • Github - new repository 생성
    • 해당 repo 주소 복사
    • 경로 : 프로젝트 디렉토리 위치
      • git init
      • git add -A . (git add 하기 전에 .gitignore 폴더 생성하여 git에 올리지 않을 항목 입력)
      • git commit -m ‘message’
      • git remote add origin ‘repo 주소’ (해당 repo주소를 ‘origin’으로 설정)
      • git push -u origin master