WYSIWYG 위지윅 / Material-design-Icons / bootstrap tailwind /
·
카테고리 없음
What You See Is What You Get 보는대로 글이 써진다 https://github.com/yabwe/medium-editor GitHub - yabwe/medium-editor: Medium.com WYSIWYG editor clone. Uses contenteditable API to implement a rich text solution. Medium.com WYSIWYG editor clone. Uses contenteditable API to implement a rich text solution. - GitHub - yabwe/medium-editor: Medium.com WYSIWYG editor clone. Uses contenteditable API to implement..
Django Queryset이란?
·
카테고리 없음
https://velog.io/@swhybein/django-queryset django - queryset과 기본 검색 방법 https://docs.djangoproject.com/en/3.0/ref/models/querysets/ https://github.com/django/django/blob/master/django/db/models/query.py 프로젝트의 app에 velog.io https://github.com/lewis810k/fastcampus/blob/master/33_%EC%BF%BC%EB%A6%AC%EC%85%8B_%EB%A9%94%EC%86%8C%EB%93%9C(1).md GitHub - lewis810k/fastcampus: 수업 내용 주제별 정리 수업 내용 주제별 정리. C..
Django 핀터레스트 5
·
카테고리 없음
30강) Profileapp 시작 그리고 ModelForm 일단 그전에 문제점 하나 로그인 하고 다른 detail 페이지 들어가면, 다른 사람 아이디가 그대로 보여 번호만 바꿔주면 나는 test1 아이디로 로그인했는데, 파라미터 값만 바꿔주니까 admin의 아이디가 보이는거야 아 지금 얘기 들어보니까, 그게 문제가 아니네 그냥 아이디가 출력되는게 문제지. 지금 구상을 인스타그램처럼 생각하고 있는거같음. 노출되는 것 자체는 괜찮은듯. 이제 이 아이디를 닉네임으로 바꿔줄거야. 이제 Profileapp을 만들어줄건데... Account 앱과 Profile은 1:1 매칭이 될거야. 만들 것 : Profile Image Profile Nickname Profile Message Profile Delete View..
docker-compose
·
System Engineering/Kubernetes
docker-compose 파일에 동시에 구성할 여러 컨테이너를 기록해두고 docker-compose up이라는 명령어로 동시에 켬 그러면 알아서 이미지 다운받고 셋업해주고 그럼. 이게 cat docker-compose.yml 파일임 version: '3.3' services: # WebServer config webserver: build: . ports: - "80:80" depends_on: - redis # Redis config redis: image: redis:4.0 여기서 웹서버가 172.20.0.3:80이라 그래서 저걸로 접속해봤는데 안되더라고 localhost로 접속하니까 됐음 그니까 뭔가 네트워크 설정이 일반적이지 않음. 가동중인 컨테이너 상태 확인할 때는 docker-compose ..
linux tree 명령어
·
System Engineering/리눅스, 라즈베리파이
이렇게 나옴 ㅎ
apt-get update & apt-get upgrade의 의미
·
System Engineering/리눅스, 라즈베리파이
WSL2로 우분투를 윈도우10에 설치하고 tree 명령어를 설치하고자 했다. 그런데 sudo apt-get install tree를 해도 안돼! 알고보니, apt-get update를 해주지 않아서 그랬어. The command apt-get update only updates the package lists. 즉, 다운 받아올 repo의 package lists가 update 되어있지 않아서 unable to locate 메시지가 떴던거야.