Skip to content

Commit 91783cc

Browse files
authored
Merge pull request coollabsio#2805 from coollabsio/next
v4.0.0-beta.310
2 parents cbeebed + 6ba3d5f commit 91783cc

File tree

9 files changed

+168
-16
lines changed

9 files changed

+168
-16
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
)
33

44
[![Bounty Issues](https://img.shields.io/static/v1?labelColor=grey&color=6366f1&label=Algora&message=%F0%9F%92%8E+Bounty+issues&style=for-the-badge)](https://console.algora.io/org/coollabsio/bounties/new)
5-
[![Open Bounties](https://img.shields.io/endpoint?url=https%3A%2F%2Fconsole.algora.io%2Fapi%2Fshields%2Fcoollabsio%2Fbounties%3Fstatus%3Dopen&style=for-the-badge)](https://console.algora.io/org/coollabsio/bounties?status=open)
6-
[![Rewarded Bounties](https://img.shields.io/endpoint?url=https%3A%2F%2Fconsole.algora.io%2Fapi%2Fshields%2Fcoollabsio%2Fbounties%3Fstatus%3Dcompleted&style=for-the-badge)](https://console.algora.io/org/coollabsio/bounties?status=completed)
75

86
# About the Project
97

@@ -49,6 +47,7 @@ Special thanks to our biggest sponsors!
4947
<a href="https://coolify.ad.vin/?ref=coolify.io" target="_blank"><img src="./other/logos/advin.png" alt="advin logo" width="250"/></a>
5048
<a href="https://trieve.ai/?ref=coolify.io" target="_blank"><img src="./other/logos/trieve_bg.png" alt="trieve logo" width="180"/></a>
5149
<a href="https://blacksmith.sh/?ref=coolify.io" target="_blank"><img src="./other/logos/blacksmith.svg" alt="blacksmith logo" width="200"/></a>
50+
<a href="https://latitude.sh/?ref=coolify.io" target="_blank"><img src="./other/logos/latitude.svg" alt="latitude logo" width="200"/></a>
5251

5352
## Github Sponsors ($40+)
5453
<a href="https://serpapi.com/?ref=coolify.io"><img width="60px" alt="SerpAPI" src="https://github.com/serpapi.png"/></a>

bootstrap/helpers/constants.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
'ubuntu debian raspbian',
4141
'centos fedora rhel ol rocky amzn almalinux',
4242
'sles opensuse-leap opensuse-tumbleweed',
43+
'arch',
4344
];
4445

4546
const SHARED_VARIABLE_TYPES = ['team', 'project', 'environment'];

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"poliander/cron": "^3.0",
3333
"purplepixie/phpdns": "^2.1",
3434
"pusher/pusher-php-server": "^7.2",
35+
"resend/resend-laravel": "^0.13.0",
3536
"sentry/sentry-laravel": "^4.6",
3637
"socialiteproviders/microsoft-azure": "^5.1",
3738
"spatie/laravel-activitylog": "^4.7.3",
@@ -106,4 +107,4 @@
106107
},
107108
"minimum-stability": "stable",
108109
"prefer-stable": true
109-
}
110+
}

composer.lock

Lines changed: 127 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/sentry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
// The release version of your application
99
// Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD'))
10-
'release' => '4.0.0-beta.309',
10+
'release' => '4.0.0-beta.310',
1111
// When left empty or `null` the Laravel environment will be used
1212
'environment' => config('app.env'),
1313

config/version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<?php
22

3-
return '4.0.0-beta.309';
3+
return '4.0.0-beta.310';

other/logos/latitude.svg

Lines changed: 1 addition & 0 deletions
Loading

templates/compose/twenty.yaml

Lines changed: 32 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,42 @@ services:
1212
- SERVER_URL=$SERVICE_FQDN_TWENTY
1313
- FRONT_BASE_URL=$SERVICE_FQDN_TWENTY
1414
- ENABLE_DB_MIGRATIONS=true
15-
- SIGN_IN_PREFILLED=false
15+
- CACHE_STORAGE_TYPE=${CACHE_STORAGE_TYPE:-redis}
16+
- REDIS_HOST=redis
17+
- REDIS_PORT=6379
1618

17-
- STORAGE_TYPE=${STORAGE_TYPE:-local}
18-
- STORAGE_S3_REGION=$STORAGE_S3_REGION
19-
- STORAGE_S3_NAME=$STORAGE_S3_NAME
20-
- STORAGE_S3_ENDPOINT=$STORAGE_S3_ENDPOINT
19+
# https://twenty.com/developers/section/self-hosting/self-hosting-var#security
20+
- API_RATE_LIMITING_TTL=${API_RATE_LIMITING_TTL:-100}
21+
- API_RATE_LIMITING_LIMIT=${API_RATE_LIMITING_LIMIT:-100}
2122

23+
# https://twenty.com/developers/section/self-hosting/self-hosting-var#tokens
2224
- ACCESS_TOKEN_SECRET=$SERVICE_BASE64_32_ACCESS
2325
- LOGIN_TOKEN_SECRET=$SERVICE_BASE64_32_LOGIN
2426
- REFRESH_TOKEN_SECRET=$SERVICE_BASE64_32_REFRESH
2527
- FILE_TOKEN_SECRET=$SERVICE_BASE64_32_FILE
2628
- POSTGRES_ADMIN_PASSWORD=$SERVICE_PASSWORD_POSTGRES
2729
- PG_DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_POSTGRES@postgres:5432/default
2830

31+
# https://twenty.com/developers/section/self-hosting/self-hosting-var#auth
32+
- IS_SIGN_UP_DISABLED=${IS_SIGN_UP_DISABLED:-false}
33+
- PASSWORD_RESET_TOKEN_EXPIRES_IN=${PASSWORD_RESET_TOKEN_EXPIRES_IN:-5m}
34+
35+
# https://twenty.com/developers/section/self-hosting/self-hosting-var#workspace-cleaning
36+
- WORKSPACE_INACTIVE_DAYS_BEFORE_NOTIFICATION=$WORKSPACE_INACTIVE_DAYS_BEFORE_NOTIFICATION
37+
- WORKSPACE_INACTIVE_DAYS_BEFORE_DELETION=$WORKSPACE_INACTIVE_DAYS_BEFORE_DELETION
38+
39+
# https://twenty.com/developers/section/self-hosting/self-hosting-var#captcha
40+
- STORAGE_TYPE=${STORAGE_TYPE:-local}
41+
- STORAGE_S3_REGION=$STORAGE_S3_REGION
42+
- STORAGE_S3_NAME=$STORAGE_S3_NAME
43+
- STORAGE_S3_ENDPOINT=$STORAGE_S3_ENDPOINT
44+
- STORAGE_S3_ACCESS_KEY_ID=$STORAGE_S3_ACCESS_KEY_ID
45+
- STORAGE_S3_SECRET_ACCESS_KEY=$STORAGE_S3_SECRET_ACCESS_KEY
46+
47+
# https://twenty.com/developers/section/self-hosting/self-hosting-var#message-queue
48+
- MESSAGE_QUEUE_TYPE=$MESSAGE_QUEUE_TYPE
49+
50+
# https://twenty.com/developers/section/self-hosting/self-hosting-var#email
2951
- EMAIL_FROM_ADDRESS=$EMAIL_FROM_ADDRESS
3052
- EMAIL_FROM_NAME=$EMAIL_FROM_NAME
3153
- EMAIL_SYSTEM_ADDRESS=$EMAIL_SYSTEM_ADDRESS
@@ -35,10 +57,12 @@ services:
3557
- EMAIL_SMTP_USER=$EMAIL_SMTP_USER
3658
- EMAIL_SMTP_PASSWORD=$EMAIL_SMTP_PASSWORD
3759

60+
# https://twenty.com/developers/section/self-hosting/self-hosting-var#debug-/-development
61+
- SIGN_IN_PREFILLED=false
62+
- DEBUG_MODE=${DEBUG_MODE:-false}
63+
64+
# https://twenty.com/developers/section/self-hosting/self-hosting-var#telemetry
3865
- TELEMETRY_ENABLED=${TELEMETRY_ENABLED:-false}
39-
- CACHE_STORAGE_TYPE=${CACHE_STORAGE_TYPE:-redis}
40-
- REDIS_HOST=redis
41-
- REDIS_PORT=6379
4266
depends_on:
4367
postgres:
4468
condition: service_healthy

versions.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"coolify": {
33
"v4": {
4-
"version": "4.0.0-beta.309"
4+
"version": "4.0.0-beta.310"
55
}
66
}
7-
}
7+
}

0 commit comments

Comments
 (0)