git push 5

컴파일러 사이트! repl.it - github 커밋하기

컴파일러 사이트! repl.it - github 커밋하기 repl과 git을 연동하며 커밋에 대한 질문이 많이 들어와 커밋하는 가이드라인을 만들어 보았습니다. 관련 게시글 >> integer-ji.tistory.com/220#comment12246350 컴파일러 사이트! repl.it - github 연동하기 컴파일러 사이트 추천! "repl.it" 그리고 github 연동하기 백준알고리즘이나 goorm.io 문제를 풀때 컴파일러 에디터?가 너무 불편해서 찾은 컴파일러 사이트입니다. 사용할수있는 언어도 많고 실제 컴 integer-ji.tistory.com https://repl.it/ The collaborative browser based IDE Repl.it is a simple yet powerf..

설치 && 설정 2020.12.27

[django 실습] 게시판 만들기 - detail page 만들기

python django 게시판 만들기 - detail page 만들기 model, admin 설정 : https://integer-ji.tistory.com/89 views에 데이터 가져오기 : https://integer-ji.tistory.com/90 언제나 시작은 가상 환경 실행, 디렉터리 이동 source myvenv/Scripts/activate cd crudproject/ 새로운 페이지.html 생성하는 방법 html을 만들면 해야할것 3가지 1. templates 폴더 안에 html파일 만들기 2. views.py에 함수 설정하기 3. urls.py url 만들기 crudapp/templates/detail.html 만들기 views.py detail 함수 설정 from django.sho..

[django 실습] 게시판 만들기 - views에 데이터 가져오기

python django 게시판 만들기 - view함수에 데이터를 가져와 html에 띄우기 model, admin 설정 : https://integer-ji.tistory.com/89 언제나 시작은 가상 환경 실행, 디렉터리 이동 source myvenv/Scripts/activate cd crudproject/ 데이터 추가하기 admin 페이지에 데이터를 추가해 줍니다. views.py home 함수 수정 from django.shortcuts import render from .models import Blog # Create your views here. def home(request): blogs = Blog.objects return render(request, 'home.html', {'blo..

[django 기초] 페이지 이동, git push, 템플릿 태그

[django 기초] 페이지 이동, git push, 템플릿 태그 vscode 설치하기 : https://integer-ji.tistory.com/65 python 설치하기 : https://integer-ji.tistory.com/64 git 설치하기 : https://integer-ji.tistory.com/66 vscode 설정하기 : https://integer-ji.tistory.com/81 hello world 띄우기 : https://integer-ji.tistory.com/82 git 초기 설정 : https://integer-ji.tistory.com/83 새로운 페이지.html 생성 new page! 새로운 페이지 new.html을 템플릿 폴더 아래에 생성 views.py 등록 def ..

[django 기초] vscode git 초기 설정, git push, git 강제 push

[django 기초] vscode git 초기 설정, git push, git 강제 push vscode 설치하기 : https://integer-ji.tistory.com/65 python 설치하기 : https://integer-ji.tistory.com/64 git 설치하기 : https://integer-ji.tistory.com/66 vscode 설정하기 : https://integer-ji.tistory.com/81 hello world 띄우기 : https://integer-ji.tistory.com/82 ▶▶ .gitignore 들기 전에 필수 ◀◀ .gitignore 설정하기 : https://integer-ji.tistory.com/179 django secret key 분리하기 : h..