1. 프로젝트 sparta_project/(root)bucket/ 폴더 생성, app.py 메인 파일 생성
2. View페이지용 (root)/templates/ 폴더 생성, 메인 뷰페이지 index.html 생성
3. CSS 모듈화 (root)/static/css/ 폴더 생성, CSS용 style.css 생성
4. JS 모듈화 (root)/static/js/ 폴더 생성, JS용 script.js 생성
5. venv 가상 환경 설정
python3 -m venv venv
Plain Text
복사
6. 인터프리터 python 3.8.2 버전 선택 후 (venv)가상환경 적용 터미널 열기
7. git 로컬 리포 등록, github 원격 리포 연동
8. .gitignore생성 및 가상환경 추적 제외
venv/
Plain Text
복사
9. readme.md 프로젝트 개요 작성 및 생성