프로젝트 MIKO 를 위한 레포
MIKO/
├── backend/
│ ├── main-server/
│ ├── nlp-server/
├── frontend/
MIKO 서비스의 백엔드 서버. 회의방과 화상 대화를 위한 서버와 자연어 처리를 위한 서버로 나뉨.
회의방, 화상 대화를 위한 서버
NestJS
- 
Navigate to the
main-serverdirectory:cd backend/main-server - 
Install the dependencies:
npm install
 - 
Start the server:
npm run start:dev
 
자연어 처리를 위한 서버
Python Flask
- 
Navigate to the
nlp-serverdirectory:cd backend/nlp-server - 
Create a virtual environment and activate it:
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
 - 
Install the required packages:
pip install -r requirements.txt
 - 
Start the server:
python app.py
 
MIKO 프론트엔드 서버
Next.js
- 
Navigate to the
frontenddirectory:cd frontend - 
Install the dependencies:
npm install
 - 
Start the development server:
npm run dev