일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- route53
- 배포
- CloudFront
- 롤
- e.stopPropagation()
- riotapi
- Django
- typeorm
- mysqlclient
- Github Actions
- code-server
- docker
- Python
- nestjs
- Object.freeze()
- AWS
- 리액트
- ACM
- ci/cd
- liunx
- Recoil
- styled-component
- requests
- GlobalStyle
- e.preventDefault()
- 자바스크립트
- 전역스타일
- React
- 카카오 로그인
- s3
- Today
- Total
목록Django (4)
군붕이의 메모장
Django 에서 DB로 Mysql을 사용하려면 mysqlclient 가 필요하다. pip install mysqlclient 하지만 위 명령어를 입력하고나면 쉘에서 OSError 와 함께 에러가 발생한다. 이때 에러를 해결하려면 아래 패키지를 설치해주면 된다. # Debian, Ubuntu 계열 sudo apt-get install python3-dev default-libmysqlclient-dev build-essential # Redhat, CentOS 계열 sudo yum install python3-devel mysql-devel 그리고 나서 pip install mysqlclient 를 실행하면 정상적으로 설치가 진행된다. 출처 : https://stackoverflow.com/questio..
● Riot API 발급받기 우선 riot 개발자 페이지에 접속해야한다. URL : developer.riotgames.com/ Riot Developer Portal About the Riot Games API With this site we hope to provide the League of Legends developer community with access to game data in a secure and reliable way. This is just part of our ongoing effort to respond to players' and developers' requests for data and developer.riotgames.com 접속후 상단 Login 을 눌러 본인의 리..
디렉토리 구조 ├─django_noobgg │ └─__pycache__ ├─static │ └─summonor │ ├─css │ └─js ├─summonor │ ├─migrations │ │ └─__pycache__ │ └─__pycache__ └─templates └─summonor settings.py import os # static 폴더의 최상위 URL 경로 - noob.gg/static/ STATIC_URL = '/static/' # static 파일이 위치한 경로를 지정 STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static'), ] index.html {% load static %} Welcome to Noob.GG script.js let h1 = do..