일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Visual Studio Code
- Serial
- 파이썬
- 티스토리 초대장
- 딥러닝
- matplot
- sql developer
- MX Component
- rs485
- pymssql
- vscode
- oracle
- MSSQL PYTHON
- 오라클
- MEAN Stack
- 장고
- 자본주의
- Python
- scrapy
- windows10
- 윈도우10
- 텐서플로우
- PYTHON MSSQL
- rs422
- django
- c#
- 크롤링
- tensorflow
- MSSQL
- M2M
- Today
- Total
목록장고 (15)
안까먹을라고 쓰는 블로그
https://docs.djangoproject.com/en/4.0/intro/tutorial01/ Writing your first Django app, part 1 | Django documentation | Django Django The web framework for perfectionists with deadlines. Overview Download Documentation News Community Code Issues About ♥ Donate docs.djangoproject.com 이 자습서를 통해 기본 투표 응용 프로그램을 만드는 과정을 안내합니다. 두 부분으로 구성됩니다. 사람들이 투표를 보고 투표할 수 있는 공개 사이트입니다. 투표를 추가, 변경 및 삭제할 수 있는 관리 사이트입..
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com 슈퍼유저 생성 및 관리 인터페이스 활성화 기본적으로 Django는 인증으로 보호되는 웹 앱에 대한 관리 인터페이스를 제공합니다. 인터페이스는 기본적으로 프로젝트의 INSTALLED_APPS 목록(settin..
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com 환경에 대한 requirements.txt 파일 생성 소스 제어 또는 다른 수단을 통해 앱 코드를 공유할 때 받는 사람이 항상 해당 환경을 직접 다시 만들 수 있으므로 가상 환경의 모든 파일을 복사하는 것은..
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com 데이터, 데이터 모델 및 마이그레이션 작업 많은 웹 앱은 데이터베이스에 저장된 정보로 작동하며 Django는 모델을 사용하여 해당 데이터베이스의 객체를 쉽게 나타낼 수 있습니다. Django에서 모델은 특정..
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com 기본 템플릿을 확장하는 여러 템플릿 만들기 대부분의 웹 앱에는 둘 이상의 페이지가 있고 해당 페이지는 일반적으로 많은 공통 요소를 공유하기 때문에 개발자는 이러한 공통 요소를 다른 페이지 템플릿이 확장하는 ..
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com collectstatic 명령 사용 프로덕션 배포의 경우 일반적으로 python manage.py collectstatic 명령을 사용하여 앱의 모든 정적 파일을 단일 폴더로 수집합니다. 그런 다음 전용 정..
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com 정적 파일 제공 정적 파일은 CSS 파일과 같은 특정 요청에 대해 웹 앱이 있는 그대로 반환하는 콘텐츠 조각입니다. 정적 파일을 제공하려면 기본적으로 포함되는 settings.py의 INSTALLED_APP..
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com 템플릿을 사용하여 페이지 렌더링 지금까지 이 자습서에서 만든 앱은 Python 코드에서 일반 텍스트 웹 페이지만 생성합니다. 코드에서 직접 HTML을 생성하는 것이 가능하지만 개발자는 앱이 XSS(교차 사이..
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com 디버거 탐색 디버깅은 특정 코드 줄에서 실행 중인 프로그램을 일시 중지할 수 있는 기회를 제공합니다. 프로그램이 일시 중지되면 변수를 검사하고 디버그 콘솔 패널에서 코드를 실행하거나 디버깅 에 설명된 기능을..
Django 앱 만들기 1. 가상 환경이 활성화된 VS Code 터미널에서 프로젝트 폴더(manage.py 가 있는 위치)에서 관리 유틸리티의 startap 명령을 실행합니다. python manage.py startapp hello 아래와 같이 hello 폴더가 생성되었습니다. 이 명령은 여러 코드 파일과 하나의 하위 폴더가 포함된 hello 라는 폴더를 만듭니다. . views.py : 웹 앱에서 페이지를 정의하는 함수 포함 . models.py : 데이터 개체를 정의하는 클래스 포함 . migrations 폴더 : Django의 관리 유틸리티에서 이 튜토리얼의 뒷부분에서 설명하는 데이터베이스 버전을 관리하는 데 사용됩니다 . apps.py : 앱 구성 . admin.py : 관리 인터페이스 생성용 ..