Skip to content

Latest commit

 

History

History
53 lines (45 loc) · 876 Bytes

README.md

File metadata and controls

53 lines (45 loc) · 876 Bytes

SWE3002_41 Team Project


Frontend

Getting Started

  1. Install node.js (Latest LTS Version: 18.18.0, includes npm 9.8.1) https://nodejs.org/ko/download
  2. Move to frontend folder
cd frontend
  1. Install packages
npm install
  1. Execute
npm start 

If you want to install new packages, please use the following command.

npm install [package name]

Backend

Getting Started

  1. Move to backend folder
cd backend
  1. Install packages
pip install -r requirements.txt
  1. Execute server
uvicorn app.main:app --reload

Contributing

If you install a new package, use the following command to reflect that package in requirements.txt.

pip freeze > requirements.txt