본문 바로가기

분류 전체보기377

데이터 변경 이력 관리 모델 설계 전 내용 정리 2025. 9. 3.
[React] Lottie Files 사용하기 Install Packagenpm i lottie-react 아래 링크에서 원하는 로티 파일 다운로드 후 코드를 작성합니다. (파일을 직접 다운로드하지 않고 URL 사용도 가능) LottieFiles: Download Free lightweight animations for website & apps.Effortlessly bring the smallest, free, ready-to-use motion graphics for the web, app, social, and designs. Create, edit, test, collaborate, and ship Lottie animations in no time!lottiefiles.com간단하게 로그인 성공 후 애니메이션을 1.5초 동안 출력하도록 .. 2025. 8. 19.
[Django] 커스텀 유저 모델 적용 확인하기(feat: Docker 환경) 현재 진행 중인 장고 프로젝트의 사용자 계정 코드를 분석한 내용을 정리한 글입니다. 현재 로컬 개발 환경과 배포 환경은 각기 다른 docker-compose 파일로 분리되어 있습니다. 로컬에서는 web이라는 컨테이너에서 장고 서버가 실행 중이기 때문에 장고 셸에 접속하기 위해선 다음 명령어를 사용합니다.docker-compose exec web python manage.py shell 코드를 보면 사용자 커스텀 유저 클래스를 정의할 때 AbstractUser를 상속받도록 한다음 users앱에 모델로 정의하였고, 설정 파일에서 AUTH_USER_MODEL 을 다음과 같이 커스텀 유저로 등록한 상태입니다.# users/models.pyclass User(AbstractUser): ...# settings/b.. 2025. 8. 13.
AWS EC2 + Github Actions + Docker Hub를 이용하여 CI/CD 구축하기 도커 이미지를 빌드하고 도커 허브에 푸시하기 위한 과정을 정리한 글입니다. Docker Hub Container Image Library | App ContainerizationSoftware supply chain Secure Your Supply Chain with Docker Hardened Images Use Docker's enterprise-grade base images: secure, stable, and backed by SLAs for Ubuntu, Debian, Java, and more. Regularly scanned and maintained with CVE remediation and long-termhub.docker.com도커 허브 사이트에 접속하여 로그인 한 후에 오른쪽.. 2025. 8. 5.
SSH 키 페어 생성하기 터미널에서 다음 명령어 입력 후$ ssh-keygen -t rsa -b 4096 -C "your_email@exam.com" 생성된 파일 중 id_rsa는 외부에 유출되어서는 안되는 비밀 키, id_rsa.pub는 공개 키 2025. 7. 31.
크롬 실행 중 net::ERR_HTTP2_PROTOCOL_ERROR: 발생 인터넷 캐시 삭제 후 재시도 2025. 7. 30.