일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- declare
- hackerrank
- MSSQL
- 중복제거
- HTML
- templates
- python 3.7
- pythonanywhere
- COMMIT
- anaconda3
- 델파이
- c#
- Delphi
- GIT
- Django
- advColumnGrid
- Visual Studio
- 백준
- dbadvgrid
- Push
- queryset
- get_object_or_404
- pyhcarm
- python3
- PyCharm
- blog
- github
- TMS
- delphi 10.3
- rank
- Today
- Total
목록전체 글 (60)
DevHyun

장고걸스 코치들과 자원봉사자들의 수고로 번역된 글을 참고하였습니다. tutorial.djangogirls.org/ko 1. 가상환경 사이트 선택(pythonanywhere,heroku 등등) * pythonanywhere 사용! 2. pythonanywhere 가입! www.pythonanywhere.com/ Host, run, and code Python in the cloud: PythonAnywhere Batteries included With Python versions 2.7, 3.3, 3.4, 3.5 and 3.6, and all the goodies you normally find in a Python installation, PythonAnywhere is also preconfigured..

1. Django URL Django는 URLconf (URL configuration)를 사용합니다. URLconf는 Django에서 URL과 일치하는 뷰를 찾기 위한 패턴들의 집합입니다. 2. DevhyunDjangoBlog/url.py * Django는 admin/로 시작하는 모든 URL을 view와 대조해 찾아냅니다. 무수히 많은 URL이 admin URL에 포함될 수 있어 일일이 모두 쓸 수 없기 때문에 정규표현식을 사용합니다. from django.contrib import admin from django.urls import path urlpatterns = [ path('admin/', admin.site.urls), ] 3. Blog App에서 DevhyunDjangoBlog/urls.p..

1. vcs - import into virsion control - share project in github 2. github 계정 설정 3. share! * 첫 share는 지금까지 작성한 것들을 commit 해서 push까지 됨! 두번째 부터는 commit 후 push는 수동으로 해줘야함 4. 변경사항 선택 후 commit 하기! 5. vcs - git - push 6. 연동 끝.