graphql-engine/cli
2020-06-03 16:49:36 +05:30
..
build ci: add tests for cli-migrations image (#4396) 2020-04-15 07:26:00 +05:30
cmd/hasura fix typos is multiple files (#728) 2018-10-15 12:29:51 +05:30
commands cli: add --dry-run flag to migrate apply command (close #3128) (#3499) 2020-06-03 16:49:36 +05:30
integration_test cli: fix tests failing in local dev environment (#4729) 2020-06-03 14:01:40 +05:30
metadata console, cli, cli-ext: query support for actions (close #4032) (#4318) 2020-04-13 15:51:53 +05:30
migrate cli: add --dry-run flag to migrate apply command (close #3128) (#3499) 2020-06-03 16:49:36 +05:30
pkg/console cli: load assets from server if cdn is disabled (close #3382) (#3851) 2020-06-03 09:36:23 +05:30
plugins cli: spinner bug, add cli_environment in global config (#4459) 2020-04-22 14:45:42 +05:30
telemetry cli: add directory name as an argument to init cmd (#3590) 2019-12-25 14:01:29 +05:30
update cli: add version flag in update-cli command (#3996) 2020-03-05 12:25:33 +05:30
util cli: add support for servers with self-signed certs (fix #4564) (#4582) 2020-04-28 17:29:57 +05:30
version cli: add support for servers with self-signed certs (fix #4564) (#4582) 2020-04-28 17:29:57 +05:30
.gitignore [cli] commit realize, update docs 2018-06-28 11:35:34 +05:30
.realize.yaml cli: update go-binddata, fix realize (close #3588) (#3687) 2020-01-13 15:24:41 +05:30
cli.go cli: load assets from server if cdn is disabled (close #3382) (#3851) 2020-06-03 09:36:23 +05:30
CONTRIBUTING.md cli: update docs to remove realize specific instructions (#4398) 2020-04-14 08:42:53 +05:30
directory.go validate pwd is neither filesystem root nor an existing hasura project 2020-04-27 09:04:32 +05:30
get.sh cli(installer): add -f flag to curl (fix #1871) (#3477) 2019-12-12 11:00:19 +05:30
global_config.go cli: spinner bug, add cli_environment in global config (#4459) 2020-04-22 14:45:42 +05:30
go.mod cli: add support for skipping execution while generating migrations through the migrate REST API (#4475) 2020-06-02 10:41:47 +05:30
go.sum cli: add support for skipping execution while generating migrations through the migrate REST API (#4475) 2020-06-02 10:41:47 +05:30
logger_hook.go cli: allow managing actions (#3859) 2020-02-24 21:44:46 +05:30
Makefile cli: load assets from server if cdn is disabled (close #3382) (#3851) 2020-06-03 09:36:23 +05:30
README.md cli: update installation instructions in the readme (fix #3875) (#3876) 2020-02-13 12:54:36 +05:30

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/master/cli/get.sh | 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
# 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.