graphql-engine/cli
Divi c1fc137075 cli: upgrade cuelang to fix memory leak
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5072
Co-authored-by: Aravind K P <8335904+scriptonist@users.noreply.github.com>
GitOrigin-RevId: 8c3eafe15ae1e8b8a5d47307b6739d5a4910b94d
2022-07-19 13:50:46 +00:00
..
build ci: add tests for cli-migrations image (#4396) 2020-04-15 07:26:00 +05:30
cmd/hasura cli: update go.mod 2021-06-16 11:45:07 +00:00
commands cli: fix perfomance regression with large metadata in metadata apply 2022-06-15 12:39:43 +00:00
integration_test server: migrate to aeson-2 in preparation for ghc 9.2 upgrade 2022-06-08 15:32:27 +00:00
internal cli: use 2-spaces indent for graphql query in metadata (fix #8469) 2022-06-27 05:27:19 +00:00
migrate cli: avoid exporting hasura-specific schemas during hasura init 2022-04-25 13:06:52 +00:00
pkg server: more GHC 9.2 changes compatible with 8.10 (#3550) 2022-07-07 16:51:18 +00:00
plugins cli: fix lint errors 2021-10-13 14:39:15 +00:00
seed cli: fix lint errors 2021-10-13 14:39:15 +00:00
telemetry cli: send error to telemetry 2021-09-08 08:56:54 +00:00
update cli: fix lint errors 2021-10-13 14:39:15 +00:00
util cli: skip tls verfication for all API requests when insecure-skip-tls-verify flag is set 2022-02-04 11:11:37 +00:00
version cli: skip tls verfication for all API requests when insecure-skip-tls-verify flag is set 2022-02-04 11:11:37 +00:00
.gitignore cli: show only differences in metadata on metadata diff 2021-06-17 10:16:17 +00:00
.realize.yaml cli: update go-binddata, fix realize (close #3588) (#3687) 2020-01-13 15:24:41 +05:30
cli_test.go cli: support multiple admin secrets 2022-06-03 13:29:56 +00:00
cli.go cli: support multiple admin secrets 2022-06-03 13:29:56 +00:00
CONTRIBUTING.md improve cli contributing.md 2021-12-29 02:19:27 +00:00
directory.go cli: use absolute path of project directory 2021-07-16 12:59:04 +00:00
get.sh cli: fix install script failing when specifying a version 2022-02-25 13:52:48 +00:00
global_config.go cli: fix lint errors 2021-10-13 14:39:15 +00:00
go.mod cli: upgrade cuelang to fix memory leak 2022-07-19 13:50:46 +00:00
go.sum cli: upgrade cuelang to fix memory leak 2022-07-19 13:50:46 +00:00
logger_hook.go cli: add migrate and metadata packages 2021-06-18 06:25:14 +00:00
Makefile ci: add action to release cli-ext binaries 2022-06-07 22:25:41 +00:00
README.md tag release v2.2.0 2022-02-02 12:49:55 +00:00

Hasura GraphQL Engine CLI

GoDoc

Installation

Download GraphQL Engine CLI bundled with Hasura CLI

  • Linux/macOS

    curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | bash
    

    This will install the Hasura CLI in /usr/local/bin. You might have to provide your sudo password depending on the permissions of your /usr/local/bin location.

    If youd prefer to install to a different location other than /usr/local/bin, set the INSTALL_PATH variable accordingly:

    curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | INSTALL_PATH=$HOME/bin bash
    

    You can also install a specific version of the CLI by providing the VERSION variable:

    curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.2.0 bash
    
  • Windows

    Download the binary cli-hasura-windows-amd64.exe available under Assets of the latest release from the GitHub release page: https://github.com/hasura/graphql-engine/releases

Download using go get

go get github.com/hasura/graphql-engine/cli/cmd/hasura

Build from source

git clone https://github.com/hasura/graphql-engine
cd graphql-engine/cli
make deps
make build-cli-ext copy-cli-ext
make build
# binaries will be in _output directory

Usage

hasura init --directory <my-project> --endpoint <graphql-endpoint> --admin-secret <admin-secret>
cd <my-project>
hasura console

Contributing

Checkout the contributing guide.