2023-03-08 23:23:45 +08:00
|
|
|
- name: default
|
|
|
|
kind: postgres
|
|
|
|
configuration:
|
|
|
|
connection_info:
|
|
|
|
database_url:
|
|
|
|
from_env: HASURA_GRAPHQL_DATABASE_URL
|
|
|
|
isolation_level: read-committed
|
|
|
|
pool_settings:
|
|
|
|
connection_lifetime: 600
|
|
|
|
idle_timeout: 180
|
|
|
|
max_connections: 50
|
|
|
|
retries: 1
|
|
|
|
use_prepared_statements: true
|
|
|
|
tables: "!include default/tables/tables.yaml"
|
|
|
|
- name: BigBlueButton
|
|
|
|
kind: postgres
|
|
|
|
configuration:
|
|
|
|
connection_info:
|
|
|
|
database_url:
|
|
|
|
connection_parameters:
|
2023-05-02 21:00:51 +08:00
|
|
|
database: bbb_graphql
|
2023-03-08 23:23:45 +08:00
|
|
|
host: localhost
|
2023-05-02 21:00:51 +08:00
|
|
|
password: bbb_graphql
|
2023-03-08 23:23:45 +08:00
|
|
|
port: 5432
|
|
|
|
username: postgres
|
|
|
|
isolation_level: read-committed
|
|
|
|
use_prepared_statements: false
|
|
|
|
tables: "!include BigBlueButton/tables/tables.yaml"
|