Skip to content

Fix for Issue 8701 #11759

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,11 @@ You should run all commands in the following steps from the root of the project.

You can now access the database at [localhost:5432](localhost:5432), with user `postgres` and password `postgres` .

Note: In some cases when using Docker, you may need to manually grant superuser permission to the `postgres` user.
```bash
sudo -u postgres psql postgres -c "ALTER ROLE postgres WITH SUPERUSER"
```

## Step 4: Set up a Redis Database (cache)
Twenty requires a redis cache to provide the best performance

Expand Down
Loading