카카오의 신입 개발자가 된 존나팸!

OT가 끝난 직후 한통의 메일을 받게 되는데…

thumbnail


GitHub license Slack Notion


Result

kakao_cafe_start

kakao_cafe_order

kakao_cafe_end



Run

$ make



:pushpin: Tips

Python virtualenv, virtualenvwrapper 설치

$ pip3 install --upgrade pip
$ pip install virtualenv virtualenvwrapper

가상환경 생성

$ virtualenv venv --python=python3

가상환경 활성화/비활성화


의존성 패키지 관리


make를 이용한 구동 및 테스트 단순화

:white_check_mark: TODO

카페 메뉴 클래스








결제 모듈 클래스


기타



:octocat: Git

Git config settings

$ git config --global user.name "Your Name"
$ git config --global user.email "you@your-domain.com"
$ git config --global core.precomposeunicode true
$ git config --global core.quotepath false


Git 프로젝트 디렉토리 생성 및 원격 저장소 연결

$ mkdir YOUR_DIRECTORY_NAME
$ cd YOUR_DIRECTORY_NAME
$ git init
$ git remote add origin YOUR_GIT_REPOSITORY_ADDRESS
$ git pull origin master


Git branch 생성

$ git branch YOUR_BRANCH_NAME


Git branch 변경

$ git checkout YOUR_BRANCH_NAME


현재 Git 레포지토리 상태 확인

$ git fetch


현재 Git 디렉토리 상태 확인

$ git status


Git에 커밋하기

$ git add .
$ git commit -m "COMMIT_MESSAGE"
$ git push origin YOUR_BRANCH_NAME



LICENSE