2020-04-23 08:57:45 +03:00
.. meta ::
:description: Haura GarphQL CLI configuration reference
:keywords: hasura, docs, CLI, CLI reference, config
2020-04-29 11:00:26 +03:00
.. _cli_config_reference:
2020-04-23 08:57:45 +03:00
2020-04-28 14:28:02 +03:00
Hasura CLI Configuration Reference
==================================
2020-04-23 08:57:45 +03:00
.. contents :: Table of contents
:backlinks: none
:depth: 1
:local:
2020-04-29 11:00:26 +03:00
Introduction
------------
Hasura CLI commands can get key values from flags, ENV variables, a `` .env `` file
or the configuration file `` config.yaml `` .
2020-04-23 08:57:45 +03:00
Configuration file
2020-04-29 11:00:26 +03:00
------------------
2020-04-23 08:57:45 +03:00
2020-04-29 11:00:26 +03:00
In order for the Hasura CLI to work, the `` config.yaml `` file is required
(created automatically via the :ref: `hasura init<hasura_init>` command).
2020-04-23 08:57:45 +03:00
The configuration file can be configured with the following config keys:
2020-04-29 11:00:26 +03:00
.. code-block :: yaml
2020-04-23 08:57:45 +03:00
version:
endpoint:
admin_secret:
2020-04-28 14:59:57 +03:00
insecure_skip_tls_verify:
certificate_authority:
2020-04-23 08:57:45 +03:00
access_key: #deprecated
api_paths:
query:
graphql:
config:
pg_dump:
version:
metadata_directory:
2021-03-09 19:31:45 +03:00
migrations_directory:
seeds_directory:
2020-04-23 08:57:45 +03:00
actions:
kind:
handler_webhook_baseurl:
codegen:
framework:
output_dir:
uri:
.. list-table ::
:header-rows: 1
* - Config Key
- Required
- Supported since Config Version
- Default value
* - version
- false
- 1
2021-02-23 18:34:38 +03:00
- 3
2020-04-23 08:57:45 +03:00
* - endpoint
- true
- 1
2021-03-02 12:26:16 +03:00
- `` http://localhost:8080 ``
2020-04-23 08:57:45 +03:00
* - admin_secret
- false
- 1
-
* - access_key
- false
- 1 (Deprecated)
-
2020-04-28 14:59:57 +03:00
* - insecure_skip_tls_verify
- false
- 1 (added in `` v1.2.0 `` )
- false
* - certificate_authority
- false
- 1 (added in `` v1.2.0 `` )
-
2020-04-23 08:57:45 +03:00
* - api_paths
- false
- 1
-
* - api_paths.query
- false
- 1
- v1/query
* - api_paths.graphql
- false
- 1
- v1/graphql
* - api_paths.config
- false
- 1
- v1alpha1/config
* - api_paths.pg_dump
- false
- 1
- v1alpha1/pg_dump
* - api_paths.version
- false
- 1
- v1/version
* - metadata_directory
- false
- 2
-
* - migrations_directory
- false
- 1
- migrations
2021-03-09 19:31:45 +03:00
* - seeds_directory
- false
- 2
-
2020-04-23 08:57:45 +03:00
* - actions
- false
- 2
-
* - actions.kind
- true
- 2
- synchronous
* - actions.handler_webhook_baseurl
- true
- 2
2021-03-02 12:26:16 +03:00
- `` http://localhost:3000 ``
2020-04-23 08:57:45 +03:00
* - actions.codegen
- false
- 2
-
* - actions.codegen.framework
- true
- 2
-
* - actions.codegen.output_dir
- true
- 2
-
* - actions.codegen.uri
- false
- 2
-
2020-04-29 11:00:26 +03:00
.. note ::
2021-03-04 22:20:19 +03:00
The above structure is for the `` config v3 `` file which is supported since `` v2.0.0-alpha.1 `` . Refer to :ref: `this page <migrations_upgrade_v3>` on how to upgrade to `` config v2 `` .
2020-04-23 08:57:45 +03:00
Environment variables
2020-04-29 11:00:26 +03:00
---------------------
2020-04-23 08:57:45 +03:00
The configuration can also be set in the form of environment variables:
.. list-table ::
:header-rows: 1
* - ENV variable
2020-04-28 14:28:02 +03:00
- Config file key
2020-04-23 08:57:45 +03:00
- Description
* - `` HASURA_GRAPHQL_VERSION ``
- `` version ``
- Config version to be used.
* - `` HASURA_GRAPHQL_ENDPOINT ``
- `` endpoint ``
- http(s) endpoint for Hasura GraphQL engine.
* - `` HASURA_GRAPHQL_ADMIN_SECRET ``
- `` admin_secret ``
- Admin secret for Hasura GraphQL engine.
* - `` HASURA_GRAPHQL_ACCESS_KEY ``
- `` access_key ``
- Access key for Hasura GraphQL engine. Note: Deprecated. Use admin
secret instead.
2020-04-28 14:59:57 +03:00
* - `` HASURA_GRAPHQL_INSECURE_SKIP_TLS_VERIFY ``
- `` insecure_skip_tls_verify ``
- Skip verifying SSL certificate for the Hasura endpoint. Useful if you have
a self-singed certificate and don't have access to the CA cert.
* - `` HASURA_GRAPHQL_CERTIFICATE_AUTHORITY ``
- `` certificate_authority ``
- Path to the CA certificate for validating the self-signed certificate for
the Hasura endpoint.
2020-04-23 08:57:45 +03:00
* - `` HASURA_GRAPHQL_API_PATHS_QUERY ``
- `` api_paths.query ``
- Schema/ metadata API endpoint. More details at :ref: `schema_metadata_api` .
* - `` HASURA_GRAPHQL_API_PATHS_GRAPHQL ``
- `` api_paths.graphql ``
- GraphQL API endpoint. More details at :ref: `graphql_api` .
* - `` HASURA_GRAPHQL_API_PATHS_CONFIG ``
- `` api_paths.config ``
- Config API endpoint. More details at :ref: `config_api` .
* - `` HASURA_GRAPHQL_API_PATHS_PG_DUMP ``
- `` api_paths.pg_dump ``
- PG Dump API endpoint. More details at :ref: `pg_dump_api` .
* - `` HASURA_GRAPHQL_API_PATHS_VERSION ``
- `` api_paths.version ``
- Version API endpoint. More details at :ref: `version_api` .
* - `` HASURA_GRAPHQL_METADATA_DIRECTORY ``
- `` metadata_directory ``
- Defines the directory where the metadata files were stored.
* - `` HASURA_GRAPHQL_MIGRATIONS_DIRECTORY ``
- `` migrations_directory ``
- Defines the directory where the migration files were stored.
2021-03-09 19:31:45 +03:00
* - `` HASURA_GRAPHQL_SEEDS_DIRECTORY ``
- `` seeds_directory ``
- Defines the directory where the seed files were stored.
2020-04-23 08:57:45 +03:00
* - `` HASURA_GRAPHQL_ACTIONS_KIND ``
- `` actions.kind ``
- Kind to be used for actions.
* - `` HASURA_GRAPHQL_ACTIONS_HANDLER_WEBHOOK_BASEURL ``
- `` actions.handler_webhook_baseurl ``
- Webhook baseurl to be used for actions.
* - `` HASURA_GRAPHQL_ACTIONS_CODEGEN_FRAMEWORK ``
- `` actions.codegen.framework ``
- Framework to codegen for actions.
* - `` HASURA_GRAPHQL_ACTION_CODEGEN_OUTPUT_DIR ``
- `` actions.codegen.output_dir ``
- Defines the directory to create the codegen files.
* - `` HASURA_GRAPHQL_ACTION_CODEGEN_URI ``
- `` actions.codegen.uri ``
- URI to codegen for actions.
CLI flags
2020-04-29 11:00:26 +03:00
---------
2020-04-23 08:57:45 +03:00
The above keys can be set using command-line flags as well. The corresponding flag,
for the ENV vars or the configuration keys, can be found in the respective commands
reference manual.
.env file
2020-04-29 11:00:26 +03:00
---------
2020-04-23 08:57:45 +03:00
Alternatively, environment variables can also be read from the `` .env `` file, created manually
by the user, at the project root directory. A global flag, `` --envfile `` , is available to
explicitly get the `` .env `` file created by the user, which defaults to `` .env `` if
no flag is provided.
It's important to note that this will not override an ENV variable that already exists.
Example:
::
hasura console --envfile production.env
The above command will read ENV vars from the `` production.env `` file present at the
project root directory.
2020-04-28 14:28:02 +03:00
.. admonition :: Supported from
2021-03-04 22:20:19 +03:00
`` .env `` file is supported in versions `` v1.2.0 `` and above.
2020-04-28 14:28:02 +03:00
2020-04-23 08:57:45 +03:00
.. note ::
Precedence order is flag > ENV vars > `` .env `` file values > configuration file values > default.