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: README.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,9 +24,9 @@ We have a fantastic community growing on Discord. Click [here](https://discord.g
24
24
4. Install dependencies with:
25
25
26
26
```bash
27
-
npm install
27
+
npm install&& npm audit fix --force
28
28
```
29
-
29
+
- The second part of the command should fix any errors you might have.
30
30
- If you have any issues installing dependencies, check your node version against that defined in the `.nvmrc`. If you're using `nvm`, you can run `nvm use` before installing dependencies.
31
31
32
32
5. Create a `.env` file and add the following variables. You can copy the contents of `sample.env` with `cat sample.env > .env`.
@@ -45,15 +45,18 @@ For a more detailed how to guide on setting them up [go to the Environment Varia
45
45
46
46
6.[Make sure your database is running](#database_url) and setup the tables in the database with Drizzle by running:
47
47
48
+
48
49
```bash
49
50
npm run db:push
50
51
```
52
+
The full command can be seen in our [here](/package.json#L16) in our [package.json](/package.json) file
51
53
52
54
7. Seed the database with some mock data by running:
53
55
54
56
```bash
55
57
npm run db:seed
56
58
```
59
+
The full command can be seen in our [here](/package.json#L19) in our [package.json](/package.json) file
0 commit comments