Skip to content

Commit

Permalink
Docs: 로컬 환경 실행 명령 제외
Browse files Browse the repository at this point in the history
- 로컬 환경 실행을 제외하고 노드 버전을 통일하기 위해 도커 실행만 명시

Related to #1
  • Loading branch information
Zamoca42 committed Oct 25, 2023
1 parent ee3831f commit 9f07d04
Showing 1 changed file with 4 additions and 16 deletions.
20 changes: 4 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,30 +32,18 @@ git config --local commit.template .gitmessage.txt
git commit
```

## 설치
## 처음 로컬 환경에서 도커 시작

```bash
$ npm install
# 빌드 후 시작
docker compose up --build
```

## 앱 시작

```bash
# 로컬 환경 시작
$ npm run start

# 개발 환경 시작
$ npm run start:dev

# 프로덕션 환경 시작
$ npm run start:prod
```

## 도커로 앱 시작

```bash
# 빌드 후 시작
docker compose up --build
$ docker compose up

# 백그라운드 환경에서 시작
docker compose up -d
Expand Down

0 comments on commit 9f07d04

Please sign in to comment.