일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- Spring
- axios
- macbook
- AWS
- EC2
- Jenkins
- MongoDB
- Express
- fastapi
- AWS EC2
- Java
- javascript
- webhook
- docker
- React
- springboot
- python
- TypeScript
- Troubleshooting
- error
- ngrok
- MUI
- nodejs
- Github Actions
- linux
- deploy
- github
- js
- 500
- RDS
- Today
- Total
목록Django (2)
BEAT A SHOTGUN
Django 를 이용해 User Create 를 시도하고 있었다. Database 에 잘 저장되지만, 에러페이지를 출력했다. ConnectionRefusedError: [WinError 10061] No connection could be made because the target machine actively refused it 혹은 DoesNotExist: Site matching query does not exist 라는 에러. 어떤 상황에서 어떻게 해결할 수 있는지 한 번 알아보자. 시작 우선 현재 환경은 Django 를 사용해서 서버를 만들고 있는 중이다. Djangorestframework 를 사용하고 dj-rest-auth, allauth 를 사용하고 있다. email 항목 우선 user 에..
시작 설치와 코드 allauth 설치 pip install django-allauth main app 의 settings.py 에 추가할 것들이 많다. # main/settings.py ... INSTALLED_APPS = [ ... # allauth 'django.contrib.sites', 'allauth', 'allauth.account', 'allauth.socialaccount', # allauth - google 'allauth.socialaccount.providers.google', # allauth - naver 'allauth.socialaccount.providers.naver', # allauth ..