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
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ The project has a `docker-compose.yml` file ready to use if you have [Docker](ht
37
37
You can also install Postgres on your local machine [directly](https://www.prisma.io/dataguide/postgresql/setting-up-a-local-postgresql-database) or use a cloud service.
38
38
39
39
move `.env.example` to `.env`
40
+
40
41
```bash
41
42
mv .env.example .env
42
43
```
@@ -81,16 +82,16 @@ Use the following command to generate the Prisma client:
81
82
npx prisma migrate dev
82
83
```
83
84
84
-
### Getting Google OAuth API Credentials
85
+
### Getting Google OAuth API Credentials
85
86
86
87
1. Visit the [Google Cloud Console](https://console.developers.google.com/apis/credentials)
87
88
2. Go to the OAuth consent screen tab, fill first step leaving the rest blank and click Save. This will create a project for you
88
89
3. Now Publish your OAuth consent screen App.
89
90
4. Go to the [Credentials tab](https://console.cloud.google.com/apis/credentials) and click Create Credentials -> OAuth Client ID
90
-
* Choose Web Application
91
-
* Add `http://localhost:5173` to the Authorized JavaScript origins
92
-
* Add `http://localhost:5173/auth/callback/google` to the Authorized redirect URIs.
93
-
* Click Create.
91
+
- Choose Web Application
92
+
- Add `http://localhost:5173` to the Authorized JavaScript origins
93
+
- Add `http://localhost:5173/auth/callback/google` to the Authorized redirect URIs.
94
+
- Click Create.
94
95
5. Copy the Client ID and Client Secret and paste them into the `.env` file.
95
96
96
97
```bash
@@ -137,6 +138,7 @@ This project uses `ESLint` as our linter tool. To configure your VSCode workspac
137
138
To further improve your development experience while working on `listd`, this project also includes a list of suggested VSCode extensions in the file `.vscode/extensions.json`.
138
139
139
140
### Formatter
141
+
140
142
This project uses [Prettier](https://prettier.io/) to format the code. You can run `npm run format:fix` to format the code before committing.
141
143
142
144
<!-- TODO: setup eslint -->
@@ -145,4 +147,4 @@ This project uses [Prettier](https://prettier.io/) to format the code. You can r
145
147
146
148
## License
147
149
148
-
By contributing, you agree that your contributions will be licensed under its MIT License.
150
+
By contributing, you agree that your contributions will be licensed under its MIT License.
0 commit comments