Skip to content

프로젝트 MIKO 전체를 담은 모노레포

Notifications You must be signed in to change notification settings

ProjectMIKO/miko

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MIKO

프로젝트 MIKO 를 위한 레포

Directory Structure

MIKO/
├── backend/
│ ├── main-server/
│ ├── nlp-server/
├── frontend/

Backend 디렉토리

MIKO 서비스의 백엔드 서버. 회의방과 화상 대화를 위한 서버와 자연어 처리를 위한 서버로 나뉨.

Main Server

회의방, 화상 대화를 위한 서버

NestJS

Installation

  1. Navigate to the main-server directory:

    cd backend/main-server
  2. Install the dependencies:

    npm install
  3. Start the server:

    npm run start:dev

NLP Server

자연어 처리를 위한 서버

Python Flask

Installation

  1. Navigate to the nlp-server directory:

    cd backend/nlp-server
  2. Create a virtual environment and activate it:

    python -m venv venv
    source venv/bin/activate  # On Windows use `venv\Scripts\activate`
  3. Install the required packages:

    pip install -r requirements.txt
  4. Start the server:

    python app.py

Frontend

MIKO 프론트엔드 서버

Next.js

Installation

  1. Navigate to the frontend directory:

    cd frontend
  2. Install the dependencies:

    npm install
  3. Start the development server:

    npm run dev

About

프로젝트 MIKO 전체를 담은 모노레포

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published