Skip to content

Commit

Permalink
Adding instruction for running redis (twentyhq#7434)
Browse files Browse the repository at this point in the history
fixes twentyhq#7433

---------

Co-authored-by: Félix Malfait <[email protected]>
  • Loading branch information
2 people authored and harshit078 committed Oct 14, 2024
1 parent b55aa0f commit b0c7822
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions packages/twenty-website/src/content/developers/local-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,24 @@ yarn

## Step 7: Running the project

Start your redis server:
<ArticleTabs label1="Linux" label2="Mac OS" label3="Windows (WSL)">
<ArticleTab>
Depending on your Linux distribution, Redis server might be started automatically.
If not, check the [Redis installation guide](https://redis.io/docs/latest/operate/oss_and_stack/install/install-redis/) for your distro.
</ArticleTab>
<ArticleTab>
```bash
brew services start redis
```
</ArticleTab>
<ArticleTab>
Depending on your Linux distribution, Redis server might be started automatically.
If not, check the [Redis installation guide](https://redis.io/docs/latest/operate/oss_and_stack/install/install-redis/) for your distro.
</ArticleTab>
</ArticleTabs>


Setup your database with the following command:
```bash
npx nx database:reset twenty-server
Expand Down

0 comments on commit b0c7822

Please sign in to comment.