You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this PR:
- update your environment variables to default `CACHE_STORAGE_TYPE` to
`redis` and `MESSAGE_QUEUE_TYPE` to `bull-mq`
- add redis container to our default docker-compose
- add `REDIS_HOST` and `REDIS_PORT` to docker-compose yaml
- add upgrade instructions
Copy file name to clipboardExpand all lines: packages/twenty-website/src/content/developers/self-hosting/upgrade-guide.mdx
+22
Original file line number
Diff line number
Diff line change
@@ -58,4 +58,26 @@ yarn command:prod upgrade-0.24
58
58
The `yarn database:migrate:prod` command will apply the migrations to the database structure (core and metadata schemas)
59
59
The `yarn command:prod upgrade-0.24` takes care of the data migration of all workspaces.
60
60
61
+
# v0.24.0 to v0.30.0
62
+
63
+
Upgrade your Twenty instance to use v0.30.0 image
64
+
65
+
**Breaking change**:
66
+
To enhance performances, Twenty now requires redis cache to be configured. We have updated our [docker-compose.yml](https://raw.githubusercontent.com/twentyhq/twenty/main/packages/twenty-docker/docker-compose.yml) to reflect this.
67
+
Make sure to update your configuration and to update your environment variables accordingly:
68
+
```
69
+
REDIS_HOST={your-redis-host}
70
+
REDIS_PORT={your-redis-port}
71
+
CACHE_STORAGE_TYPE=redis
72
+
```
73
+
74
+
**Schema and data migration**:
75
+
```
76
+
yarn database:migrate:prod
77
+
yarn command:prod upgrade-0.30
78
+
```
79
+
80
+
The `yarn database:migrate:prod` command will apply the migrations to the database structure (core and metadata schemas)
81
+
The `yarn command:prod upgrade-30` takes care of the data migration of all workspaces.
0 commit comments