You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+16-4Lines changed: 16 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,16 @@ You will need to [install docker](https://www.docker.com/get-started/) on your l
28
28
29
29
If you do not have docker, go here to download and install: <https://www.docker.com/get-started/>
30
30
31
+
If you see error starting db on M1 mac, you may need to update your docker config file at `~/.docker/config.json`
32
+
Your file should look like something like this:
33
+
34
+
```
35
+
{
36
+
"auths": {},
37
+
"currentContext": "desktop-linux"
38
+
}
39
+
```
40
+
31
41
If you are getting WSL error when you launch your desktop docker application, go here and follow these steps for windows: <https://learn.microsoft.com/en-us/windows/wsl/install-manual#step-4---download-the-linux-kernel-update-package>.
32
42
33
43
## Installation
@@ -74,9 +84,9 @@ To get started with Code Racer locally, follow these steps
74
84
75
85
10. Start the web socket server
76
86
77
-
```sh
78
-
npm run dev:wss
79
-
```
87
+
```sh
88
+
npm run dev:wss
89
+
```
80
90
81
91
Open your browser and visit <http://localhost:3000> to see the application running.
82
92
@@ -89,7 +99,6 @@ There is also a new video explaining how you can contribute to this project:
89
99
<br/>
90
100
[How to contribute to open source projects (our community project walkthrough)](https://www.youtube.com/watch?v=dLRA1lffWBw)
91
101
92
-
93
102
If you want to work on a new feature, follow these steps.
94
103
95
104
1. Fork the repo
@@ -113,7 +122,9 @@ git pull upstream main
113
122
```
114
123
115
124
## Before Submitting a Pull Request
125
+
116
126
Before submitting a **Pull Request**, you should
127
+
117
128
1. Check your code safety with Linter and TypeScript, and make sure your code can build successfully.
0 commit comments