- Install node.js (Latest LTS Version: 18.18.0, includes npm 9.8.1) https://nodejs.org/ko/download
- Move to frontend folder
cd frontend
- Install packages
npm install
- Execute
npm start
If you want to install new packages, please use the following command.
npm install [package name]
- Move to backend folder
cd backend
- Install packages
pip install -r requirements.txt
- Execute server
uvicorn app.main:app --reload
If you install a new package, use the following command to reflect that package in requirements.txt.
pip freeze > requirements.txt