Andreas
Anyone gotten Twenty -> Zapier -> Slack to work?
@Raph - when I set up the Twenty trigger it shows like this, and I have to choose one record (i.e. Ribbn in the example above). Then in the Slack config it shows the hardcoded like that. So not sure how to get around it tbh?
17 replies
Google apis auth is not enabled
root@ubuntu-etc-server:~/projects/twenty/twenty# docker exec twenty-worker-1 env
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
HOSTNAME=e868db691ee5
STORAGE_S3_NAME=
APP_SECRET=hashedpw
FRONT_BASE_URL=http://serverip:3002
REDIS_URL=redis://:hashedpw@redis:6380
ENABLE_DB_MIGRATIONS=false
PG_DATABASE_URL=postgres://twenty:twenty@db:5432/default
SERVER_URL=http://serverip:3002
STORAGE_S3_REGION=
STORAGE_TYPE=local
STORAGE_S3_ENDPOINT=
NODE_VERSION=18.17.1
YARN_VERSION=1.22.19
REACT_APP_SERVER_BASE_URL=
SENTRY_RELEASE=
HOME=/home/node
root@ubuntu-etc-server:~/projects/twenty/twenty# docker exec twenty-server-1 env
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
HOSTNAME=fea9cd8c45f7
PORT=3000
STORAGE_S3_ENDPOINT=
STORAGE_S3_NAME=
SERVER_URL=http://server-ip:3002
SIGN_IN_PREFILLED=false
FRONT_BASE_URL=http://server-ip:3002
STORAGE_TYPE=local
REDIS_URL=redis://:hashedpw@redis:6380
APP_SECRET=hashedpw
ENABLE_DB_MIGRATIONS=true
STORAGE_S3_REGION=
PG_DATABASE_URL=postgres://twenty:twenty@db:5432/default
NODE_VERSION=18.17.1
YARN_VERSION=1.22.19
REACT_APP_SERVER_BASE_URL=
SENTRY_RELEASE=
HOME=/home/node
Hmm you're correct I think @Raphaël? I followed the one click guide though. What would you suggest as next step to resolve?
17 replies
yarn fails?
Yes sure @Raph see below 🙂
PGUSER_SUPERUSER=postgres
POSTGRESQL_USER=twenty
POSTGRES_ADMIN_PASSWORD=….
POSTGRESQL_PASSWORD=twenty
PG_DATABASE_HOST=db:5432
REDIS_URL=redis://redis:6379
PG_DATABASE_URL=postgres://twenty:twenty@db:5432/default
SIGN_IN_PREFILLED=true
STORAGE_TYPE=local
STORAGE_S3_NAME=
STORAGE_S3_ENDPOINT=
STORAGE_S3_REGION=
APP_SECRET=….
PGPASSWORD_SUPERUSER=….
ALLOW_EMPTY_PASSWORD=yes
ACCESS_TOKEN_SECRET=….
LOGIN_TOKEN_SECRET=…..
REFRESH_TOKEN_SECRET=….
FILE_TOKEN_SECRET=….
REACT_APP_SERVER_BASE_URL=http://….:3000
FRONT_DOMAIN=.....
DEFAULT_SUBDOMAIN=app
SERVER_URL=http://….:3000
FRONT_PROTOCOL=http
FRONT_PORT=3001
PORT=3000
CACHE_STORAGE_TYPE=redis
CACHE_STORAGE_TTL=3600 * 24 * 7
API_RATE_LIMITING_TTL=100
API_RATE_LIMITING_LIMIT=200
ACCESS_TOKEN_EXPIRES_IN=30m
LOGIN_TOKEN_EXPIRES_IN=15m
9 replies
Deploying TwentyCRM on AKS with Kubernetes Manifests
I had the same issue and had to add:
PG_DATABASE_HOST=db:5432
REDIS_URL=redis://redis:6379
PG_DATABASE_URL=postgres://admin:password@localhost:5432/default?connection_limit=1
REACT_APP_SERVER_BASE_URL=http://localhost:3000
FRONT_DOMAIN=localhost
DEFAULT_SUBDOMAIN=app
SERVER_URL=localhost:3000
FRONT_PROTOCOL=http
FRONT_PORT=3001
PORT=3000
and the other env variables of course.
16 replies
Deploying TwentyCRM on AKS with Kubernetes Manifests
Question, did you configure the env variables?
https://twenty.com/developers/section/self-hosting/self-hosting-var
16 replies