Skip to content

Commit

Permalink
Add project setup guide to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
seheon99 committed Mar 29, 2024
1 parent 40ab182 commit 498a75b
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
# fit-web

f-it web 입니다.
## Project setup

### Install dependencies

```sh
yarn
```

### If you want to run the development environment

```sh
docker compose up --build
```

or

```sh
yarn run dev
```

### If you want to run the production environment

```sh
docker build -t fit-web .
docker run -p 3000:3000 fit-web
```

or

```sh
yarn run build
yarn run start
```

0 comments on commit 498a75b

Please sign in to comment.