분류 전체보기(333)
-
회원탈퇴
회원탈퇴 구현하기 (1) - 단순 회원탈퇴 (No Password Needed) (tistory.com) 회원탈퇴 구현하기 (1) - 단순 회원탈퇴 (No Password Needed) 이번에는 회원탈퇴를 구현해보려고 한다. ※ views.py 수정하기 decorators.py 에서 import 한 allowed_users에 대해서는 여기서 자세히 알아볼 수 있다. # views.py from django.shortcuts import render from django.contrib.aut hwan-hobby.tistory.com
2022.12.19 -
Django 에서 이메일 보내기 (SMT, Gmail API) (velog.io)
Django 에서 이메일 보내기 (SMT, Gmail API) (velog.io) Django 에서 이메일 보내기 (SMT, Gmail API) 회원가입 시 이메일 인증 기능을 구현하기 위해 Django를 이용해 이메일을 보내는 방법을 찾아봤다. Django에 내장된 SMTP 기능을 이용한 방법을 시도했지만 보안 문제가 발견됐고, 이는 Gmail API를 통 velog.io [Django] (점프투장고) 비밀번호 초기화 (velog.io) [Django] (점프투장고) 비밀번호 초기화 점프투장고 3-16 파이보 추가 기능 중 비밀번호 찾기와 변경 기능을 추가하는 과정이다. 본 글에서는 비밀번호 찾기, 초기화를 다룬다. velog.io [Django] 회원가입 시 이메일 인증, ..
2022.12.19 -
user의 ip address 가지고 오기
[Django] user의 ip address 가지고 오기 [Django] user의 ip address 가지고 오기 # app.py def get_client_ip(request): x_forwarded_for = request.META.get('HTTP_X_FORWARDED_FOR') if x_forwarded_for: ip = x_forwarded_for.split(',')[0] else: ip = request.META.get('REMOTE_ADDR') return ip insubkim.tistory.com
2022.12.17 -
윈도우11 셋팅
https://antennagom.com/1228 윈도우11 네트워크에 연결 없이 설치하는 방법 (22H2부터 와이파이가 안될때) 윈도우11 네트워크에 연결 없이 설치하는 방법 (22H2부터 와이파이가 안될 때) - 요즘은 인터넷 연결이 필수이긴 하지만 새로운 윈도우를 설치할때 드라이버를 잡지 못해서 드라이버를 설치하기 antennagom.com [win10] 윈도우 원격 데스크톱 연결 설정 및 포트 변경 – (주)서브이즈 (servis.co.kr) [win10] 윈도우 원격 데스크톱 연결 설정 및 포트 변경 Win10 으로 원격 데스크톱 연결 설정 방법 내 PC -> 속성 -> 원격 설정 -> 시스템 속성 -> 원격 -> 원격 데스트톱 -> " 이 컴퓨터에 대한 원격 연결 허용 / 네트워크 수준 인증 ..
2022.12.16 -
django apps in subfolder
django apps in subfolder - Python Django (makandracards.com) django apps in subfolder Given a sub-directory named "apps" for all django applications, the following steps are used to setup the sub-directory and create apps. 1 create app sub folder - "apps" mkdir apps touch apps/__init__.py 2 add app to sub folder: mkdir apps/myapp python man makandracards.com cfpp040 apps accounts home pins 를 추가하..
2022.12.16 -
python manage.py startapp appName subFolder/appName
https://stackoverflow.com/questions/48426117/django-app-in-subfolder apps.py Django - app in subfolder I've created new django app in a subdirectory using the command: python manage.py startapp appName subFolder/appName but if I try to add this app to INSTALLED_APPS at the end of the list I see the stackoverflow.com
2022.12.16