mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
8e98a2f975
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5414 Co-authored-by: Nithin <36623418+nithindv@users.noreply.github.com> Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com> Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com> GitOrigin-RevId: a9a7e24d3e63e4f5df979cf1eb56308067be49b4
21 lines
1.1 KiB
YAML
21 lines
1.1 KiB
YAML
## add your license key below
|
|
HASURA_GRAPHQL_EE_LICENSE_KEY: ""
|
|
## The metadata database for this Hasura GraphQL project. Can be changed to a managed postgres instance
|
|
HASURA_GRAPHQL_METADATA_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/postgres
|
|
## Configure redis url to be used for caching and rate limiting
|
|
HASURA_GRAPHQL_REDIS_URL: "redis://redis:6379"
|
|
HASURA_GRAPHQL_RATE_LIMIT_REDIS_URL: "redis://redis:6379"
|
|
HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey
|
|
|
|
## Optional settings:
|
|
## enable the console served by server
|
|
HASURA_GRAPHQL_ENABLE_CONSOLE: "true"
|
|
## enable required apis; metrics api exposes a prometheus endpoint, uncomment to enable
|
|
# HASURA_GRAPHQL_ENABLED_APIS: "graphql,metadata,config,developer,pgdump,metrics"
|
|
## secure metrics endpoint with a secret, uncomment to enable
|
|
# HASURA_GRAPHQL_METRICS_SECRET: "secret"
|
|
## enable debugging mode. It is recommended to disable this in production
|
|
HASURA_GRAPHQL_DEV_MODE: "true"
|
|
# HASURA_GRAPHQL_LOG_LEVEL: debug
|
|
HASURA_GRAPHQL_CONSOLE_ASSETS_DIR: "/srv/console-assets"
|
|
HASURA_GRAPHQL_MAX_CACHE_SIZE: "200" |