twentyhq / twenty

Building a modern alternative to Salesforce, powered by the community.
https://twenty.com
GNU Affero General Public License v3.0
15.04k stars 1.48k forks source link

Docker: in version 0.20 timelime is empty #6068

Closed stupkad closed 1 day ago

stupkad commented 1 week ago

Bug Description

In version 0.20.0 the timeline for records (tested with company and opportunity) is empty. This behaviour occours in an self hosted environment using the available docker containers. The timeline keeps showing no information (but does not crash) even when new entries (e.g. a note) are created.

Expected behavior

Timeline shows same information as before.

Technical inputs

Pulled both latest db and server, and deleted existing volumes.

greptile-apps[bot] commented 1 week ago

To resolve the issue with the empty timeline in version 0.20.0, follow these steps:

  1. Ensure the ENABLE_DB_MIGRATIONS environment variable is set to true for the server service in /packages/twenty-docker/docker-compose.yml:
server:
  environment:
    ENABLE_DB_MIGRATIONS: "true"
  1. Verify that the db service is healthy and running the latest image in /packages/twenty-docker/docker-compose.yml:
db:
  image: twentycrm/twenty-postgres:${TAG}
  healthcheck:
    test: pg_isready -U twenty -d default
  1. Check the release notes for version 0.20.0 in /packages/twenty-website/src/content/releases/0.20.0.mdx to ensure all new features and updates are correctly implemented.

  2. Rebuild and restart the Docker containers to apply the changes:

cd /packages/twenty-docker
make build
make up

References

/packages/twenty-docker /packages/twenty-docker/docker-compose.yml /packages/twenty-postgres/docker/docker-compose.yml /packages/twenty-website/src/content/releases/0.20.0.mdx

#### About Greptile This response provides a starting point for your research, not a precise solution. Help us improve! Please leave a ๐Ÿ‘ if this is helpful and ๐Ÿ‘Ž if it is irrelevant. [Ask Greptile](https://app.greptile.com/chat/github/twentyhq/twenty/main) ยท [Edit Issue Bot Settings](https://app.greptile.com/apps/github)
Us3r-gitHub commented 1 week ago

This seems to duplicate #6054

FelixMalfait commented 1 day ago

Closing to continue on #6054, thanks for the report and apologies for the late reply. We're catching up on all issues just now