가상환경 생성 후, 활성화 (리눅스 환경)
python3 -m venv .venv
source .venv/bin/activate
라이브러리 설치
pip3 install -r requirements.txt
db 마이그레이션
python3 manage.py migrate
django 서버 실행
python3 manage.py runserver
- feat : 새로운 기능 추가
- fix : 버그 수정
- docs : 문서 수정
- style : 코드 포맷팅, 세미콜론 누락, 코드 변경이 없는 경우
- refactor : 코드 리펙토링
- test : 테스트 코드, 리펙토링 테스트 코드 추가
- chore : 빌드 업무 수정, 패키지 매니저 수정
- feat: 기능 개발
- refactor: 코드 리팩토링
- hotfix: 배포 버전 버그 수정
This PR adds the login functionality for users. It includes the following changes:
- Implemented a login form with username and password inputs.
- Integrated with the backend API to send authentication requests.
- Handled various error states and showed corresponding messages to users.
The login feature is a core functionality of the application that allows users to authenticate into the system.
- Start the application locally.
- Navigate to the login page and try logging in with a valid account. Ensure the session is established.
- Try logging in with invalid credentials and check if appropriate error messages are displayed.
(스크린샷을 첨부할 수 있다면 여기 넣기)
...