Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/contributing-guide/environment-setup/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,21 @@ sudo apt-get install libpq-dev
sudo service postgresql start
```

Occasionally, when running the Chatwoot application in the Setup Guide tab, you may experience errors when trying to connect to the database

Make sure this doesn't happen by creating a SUPERUSER in Postgresql and then defining it in Chatwoot's environment variables

```bash
sudo -u postgres psql
```

Run the following command in terminal

```sql
CREATE USER chatwoot WITH PASSWORD 'chatwoot';
ALTER USER chatwoot WITH SUPERUSER;
```

### Install redis-server

Chatwoot uses Redis server in agent assignments and reporting. To install `redis-server`
Expand Down