python -m venv venv
venv\Scripts\activate
python -m pip install "django~=4.1.0"
python -m pip install --upgrade pip
python -m pip install wheel
python manage.py runserver
터미널
맥은 \ 대신 / 사용한다.
맥은 script 대신 bin 사용한다.
^ 장고 생성 완료 http://localhost:8000/
^ 다음과 같이 생성된 것 확인 가능
^ SSH
^ workspace > esg-a-django 파일 생성하기.
^ .gitignore 파일 생성 후 다음 코드 입력
앞에 .은 파일 보이지 않는다는 의미(?)
^ vscode new terminal 들어가서 git status
^ git add .
^ git commit -a -m "initial commit"
^ md = markdown 확장자
^ 코드 입력 후 terminal에서 add . 후 commit
가상환경 연 후
^ terminal
^ terminal
^ terminal
^ sqlite 다운받기
^ 설치 후 db.sqlite3 파일 아이콘도 바꼈고 파일 열면 다음과 같이 됨.
^ auth_user 클릭해보기
^ terminal 에 help 하면 지원되는 명령어들 나옴
^ vscode terminal 에 createsuperuser 생성
^ 장고에 /admin (장고에서 기본적으로 지원해줌) 해서 방금 위에 createsuperuser 에서 생성한 것으로 로그인하기. 물론 위에서 한 터미널은 켜 둔 상태여야 함 !!
^ 로그인 후 다음과같은 화면 뜸.