Skip to content

Commit b4be90a

Browse files
committed
WIP
1 parent 018ad2b commit b4be90a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ We have a fantastic community growing on Discord. Click [here](https://discord.g
2424
4. Install dependencies with:
2525

2626
```bash
27-
npm install
27+
npm install && npm audit fix --force
2828
```
29-
29+
- The second part of the command should fix any errors you might have.
3030
- 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.
3131

3232
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
4545

4646
6. [Make sure your database is running](#database_url) and setup the tables in the database with Drizzle by running:
4747

48+
4849
```bash
4950
npm run db:push
5051
```
52+
The full command can be seen in our [here](/package.json#L16) in our [package.json](/package.json) file
5153

5254
7. Seed the database with some mock data by running:
5355

5456
```bash
5557
npm run db:seed
5658
```
59+
The full command can be seen in our [here](/package.json#L19) in our [package.json](/package.json) file
5760

5861
8. Finally, run the development server:
5962

0 commit comments

Comments
 (0)