2022-03-02 ~ 2022-06-01
python v3.9 설치 pip 설치
> cd backend
> pip install -r requirements.txt
> uvicorn main:app --reload
- react & typescript 설치
> npx create-react-app@latest frontend --template typescript
// create-react-app 버전 문제로 @latest 붙은 최신 버전 받아야 정상 동작
> npm i --save react react-dom styled-components typescript
> npm i --save-dev @types/react @types/react-dom @types/node
> npm i -D @types/styled-components
- mui 설치(react UI framework)
> npm install @mui/material @emotion/react @emotion/styled
react >= 17.0.0 및 react-dom >= 17.0.0 에서 적용
실서버
로컬
- 프론트엔드 : localhost:3000
- 백엔드 : localhost:8000