Generate Token through Auth0

This commit is contained in:
Charles Bochet
2023-01-27 12:12:04 +01:00
parent 54acb16db8
commit 8e0dc44bf6
21 changed files with 3616 additions and 2344 deletions

View File

@ -1,5 +1,17 @@
version: "3.9"
services:
twenty-front:
build:
context: ../..
dockerfile: ./infra/dev/twenty-front/Dockerfile
ports:
- "3001:3001"
- "6006:6006"
volumes:
- ../../front:/app/front
- ../../infra:/app/infra
depends_on:
- postgres
twenty-server:
build:
context: ../..
@ -20,6 +32,8 @@ services:
PG_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/twenty
HASURA_GRAPHQL_ENABLE_CONSOLE: "true"
HASURA_GRAPHQL_DEV_MODE: "true"
HASURA_GRAPHQL_ADMIN_SECRET: ${HASURA_GRAPHQL_ADMIN_SECRET}
HASURA_GRAPHQL_JWT_SECRET: ${HASURA_GRAPHQL_JWT_SECRET}
HASURA_GRAPHQL_ENABLED_LOG_TYPES: startup, http-log, webhook-log, websocket-log, query-log
postgres:
build: ./postgres