Skip to content

Commit 84b4a6f

Browse files
authored
Merge branch 'main' into update-docs
2 parents 2a6cb64 + 3d8920b commit 84b4a6f

File tree

6 files changed

+216
-190
lines changed

6 files changed

+216
-190
lines changed

CONTRIBUTING.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ To get started with Code Racer locally, follow these steps
4646

4747
1. Make sure you have installed Docker locally (See above Prerequisites)
4848

49-
2. Fork the repo
49+
2. Fork the repository as your own repo
5050

51-
3. Clone your fork
51+
3. Clone forked repo to your local machine
5252

5353
```sh
5454
git clone https://github.com/<YOUR_GITHUB_ACCOUNT_NAME>/code-racer.git
@@ -69,25 +69,25 @@ To get started with Code Racer locally, follow these steps
6969
```sh
7070
npm i
7171
```
72-
72+
7373
8. Start the Database
74+
If you are using Docker don't forget to run `docker-compose up` to start the database.
75+
(Optional if using Docker for managing the database): Start the Database.
76+
7477
```sh
7578
npm run dev:db
7679
```
77-
If you are using Docker don't forget to run `docker-compose up` to start the database.
7880

7981
9. Start the app dev server
8082

8183
```sh
8284
npm run dev:app
8385
```
84-
8586
10. Start the web socket server
8687

87-
```sh
88-
npm run dev:wss
89-
```
90-
88+
```sh
89+
npm run dev:wss
90+
```
9191
Open your browser and visit <http://localhost:3000> to see the application running.
9292

9393
## Working on New Features
@@ -101,7 +101,7 @@ There is also a new video explaining how you can contribute to this project:
101101

102102
If you want to work on a new feature, follow these steps.
103103

104-
1. Fork the repo
104+
1. Fork the repository
105105
2. Clone your fork
106106
3. Checkout a new branch
107107
4. Do your work

package-lock.json

Lines changed: 59 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@
2828
"devDependencies": {
2929
"@flydotio/dockerfile": "^0.4.0",
3030
"cross-env": "^7.0.3",
31-
"husky": "^8.0.3"
31+
"husky": "^8.0.3",
32+
"prisma": "^5.12.0"
33+
},
34+
"dependencies": {
35+
"@prisma/client": "^5.12.0"
3236
}
3337
}

0 commit comments

Comments
 (0)