목록장고 (4)
작은 지식주머니

Django 개발 환경 구축하기. Pycharm으로는 venv등 자동으로 만들어지는게 많지만 vscode는 초반 환경설정이 필요합니다. 일단 파이썬 홈페이지에 들어가서 파이썬 설치 https://www.python.org/ Welcome to Python.org The official home of the Python Programming Language www.python.org 다음 vscode를 설치. https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging moder..

IMAP 사용 다른 이메일 플랫폼을 통해 Gmail 확인하기 - Gmail 고객센터 도움이 되었나요? 어떻게 하면 개선할 수 있을까요? 예아니요 support.google.com 보안수준 낮은 앱 허용 보안 수준이 낮은 앱 및 Google 계정 - Google 계정 고객센터 도움이 되었나요? 어떻게 하면 개선할 수 있을까요? 예아니요 support.google.com github :https://github.com/wkdtpzld/again/tree/40101b7873d8e37916823b79ec7c159e1a464896 settings.py에 추가하세요 EMAIL_HOST = 'smtp.gmail.com' EMAIL_PORT = '587' EMAIL_HOST_USER = 'id@gmail.com' EM..

github 주소 :https://github.com/wkdtpzld/again/tree/57c58fc888c200f32214ba33238533bbb721b69e GitHub - wkdtpzld/again Contribute to wkdtpzld/again development by creating an account on GitHub. github.com {{question.answer_set.count}}개의 답변이 있습니다. 추천순 최신순 찾기 {% for answer in answer_list %} templates/pybo/question_detail for in 문 위쪽에 추천과 최신순으로 필터링 할 수 있는 코드를 적어놨다. so = select 옵션 kw = textinput 옵션 으로 구..

github 주소:https://github.com/wkdtpzld/again/tree/b636875d1129fe440e39a2add895ceb922133644 GitHub - wkdtpzld/again Contribute to wkdtpzld/again development by creating an account on GitHub. github.com def detail(request,question_id): question = get_object_or_404(Question,pk=question_id) context = {'question':question} return render(request, 'pybo/question_detail.html',context) 기존 detail 함수이다. Que..