We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afd2c52 commit 0b83c48Copy full SHA for 0b83c48
1 file changed
README.md
@@ -18,8 +18,8 @@ npm install
18
19
```bash
20
docker run --name unsolved-postgres \
21
- -e POSTGRES_USER=unsolved \
22
- -e POSTGRES_PASSWORD=crew1234 \
+ -e POSTGRES_USER=userId \
+ -e POSTGRES_PASSWORD=password \
23
-e POSTGRES_DB=unsolved_db \
24
-p 5432:5432 \
25
-d postgres:15
@@ -31,7 +31,7 @@ docker run --name unsolved-postgres \
31
32
```js
33
// .env
34
-DATABASE_URL=postgresql://unsolved:crew1234@localhost:5432/unsolved_db
+DATABASE_URL=postgres://userId:password@localhost:5432/unsolved_db
35
```
36
37
> 포트를 다르게 지정했다면 5432 부분을 해당 포트 번호로 수정
@@ -52,7 +52,11 @@ npx prisma db seed
52
53
54
npm run update-tags
55
+```
56
+```bash
57
npm run update-silver-problems
58
59
60
npm run update-gold-problems
61
62
0 commit comments