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
- GlobalStyle
- 카카오 로그인
- 배포
- 자바스크립트
- liunx
- Object.freeze()
- Django
- code-server
- styled-component
- requests
- 리액트
- e.preventDefault()
- route53
- mysqlclient
- Python
- ACM
- nestjs
- riotapi
- Github Actions
- React
- CloudFront
- Recoil
- s3
- typeorm
- AWS
- docker
- ci/cd
- 전역스타일
- 롤
- e.stopPropagation()
Archives
- Today
- Total
목록static (1)
군붕이의 메모장
[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