/ci-cd-test

[스파르타 코딩클럽] Node.js 4기 - CI/CD 배포 실습

Primary LanguageTypeScript

Nest Logo

Info

erDiagram
    USER {
        int id PK "Primary Key"
        string email "Unique"
        string password
        string role
    }
    TEAM {
        int id PK "Primary Key"
        string name "Unique"
        string description
    }
    SUPPORT_MESSAGE {
        int id PK "Primary Key"
        string message
        int user_id FK "Foreign Key to USER"
        int team_id FK "Foreign Key to TEAM"
    }
    PLAYER {
        int id PK "Primary Key"
        string name
        string nickName
        int team_id FK "Foreign Key to TEAM"
    }

    USER ||--o{ SUPPORT_MESSAGE : "has many"
    TEAM ||--o{ SUPPORT_MESSAGE : "has many"
    TEAM ||--o{ PLAYER : "has many"
Loading

Getting started

  1. npm install
  2. cp .env.sample .env
  3. .env 파일 편집
  4. npm start:debug 로 실행 및 DBMS 연동 테스트