- 특정 branch clone 받기 :
git clone -b {branchname} --single-branch https://github.com/ZipProject-Likelion/ZipProject.git
config
폴더에서 settings.py.secret 파일 reveal 하기python manage.py makemigrations
python manage.py migrate
config
폴더에서git-secret hide
명령어 실행- settings.py.secret 파일 생성되었는지 확인
git add *
git commit -m "commit message"
git push origin {branchname}
- 강제 push(사용시 주의) :
git push origin +{branchname}
- backend 폴더 : django project localhost:8000
- frontend 폴더 : react project localhost:3000
- git branch는 기능별로 나눠서 (ex. backend-login, frontend-home)
- commit 메시지는
frontend-추가하거나 바뀐 기능
cd frontend
npm i
//dependencies 설치npm start
cd backend
source myvenv/bin/activate
pip install -r requirements.txt
//dependencies 설치python manage.py runserver