Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Django
- code-server
- React
- 자바스크립트
- 카카오 로그인
- riotapi
- e.stopPropagation()
- nestjs
- route53
- s3
- styled-component
- GlobalStyle
- CloudFront
- AWS
- 리액트
- mysqlclient
- Object.freeze()
- typeorm
- Github Actions
- 롤
- 배포
- docker
- e.preventDefault()
- Recoil
- 전역스타일
- ci/cd
- Python
- ACM
- requests
- liunx
Archives
- Today
- Total
목록분류 전체보기 (32)
군붕이의 메모장
[Django] Static 폴더 설정하기
디렉토리 구조 ├─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..
웹 개발/백엔드
2021. 2. 21. 11:21