/FE

Primary LanguageTypeScript

개요

mung mung Frontend Server 개발을 위한 레포지토리입니다.

레포지토리 설치 방법

레포지토리 의존성 설치

npm install

환경 파일 생성

최상위 폴더에 .env.local 파일을 생성한 다음, NEXT_PUBLIC_API_URL 항목에 API 서버의 URL을 입력합니다.

예를 들어, 로컬 환경에서 벡엔드 서버가 작동하는 경우 .env.local 파일을 다음과 같이 작성하면 됩니다.

NEXT_PUBLIC_API_URL=http://localhost:8080/api

커밋 규칙

커밋 메세지는 다음과 같은 형식으로 작성합니다.

Activity: Commit Message
  • Activities
    • int: only for initial commit
    • doc: changes document or comment
    • ftr: add new feature
    • mod: modify existing feature
    • fix: fix an error or issue
    • rfc: refactor code
    • add: add new file or directory
    • rmv: remove existing file or directory
  • Example
    • int: initial commit
    • add: prettier and eslint
    • rfc: refactoring code by prettier