Skip to content

Commit 0b83c48

Browse files
authored
Docs: Readme .env 오타 수정
1 parent afd2c52 commit 0b83c48

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ npm install
1818

1919
```bash
2020
docker run --name unsolved-postgres \
21-
-e POSTGRES_USER=unsolved \
22-
-e POSTGRES_PASSWORD=crew1234 \
21+
-e POSTGRES_USER=userId \
22+
-e POSTGRES_PASSWORD=password \
2323
-e POSTGRES_DB=unsolved_db \
2424
-p 5432:5432 \
2525
-d postgres:15
@@ -31,7 +31,7 @@ docker run --name unsolved-postgres \
3131

3232
```js
3333
// .env
34-
DATABASE_URL=postgresql://unsolved:crew1234@localhost:5432/unsolved_db
34+
DATABASE_URL=postgres://userId:password@localhost:5432/unsolved_db
3535
```
3636

3737
> 포트를 다르게 지정했다면 5432 부분을 해당 포트 번호로 수정
@@ -52,7 +52,11 @@ npx prisma db seed
5252

5353
```bash
5454
npm run update-tags
55+
```
56+
```bash
5557
npm run update-silver-problems
58+
```
59+
```bash
5660
npm run update-gold-problems
5761
```
5862

0 commit comments

Comments
 (0)