graphql-engine/cli
2021-06-09 10:46:05 +00:00
..
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: remove the unnecessary empty lines in actions.graphql generated by metadata export command 2021-06-09 10:46:05 +00:00
integration_test cli: remove the unnecessary empty lines in actions.graphql generated by metadata export command 2021-06-09 10:46:05 +00:00
internal cli: add interactive prompt to get input when --database-name flag is missing 2021-06-09 07:13:46 +00:00
migrate cli: config v3 update script improvements 2021-05-28 06:05:33 +00:00
pkg/console cli: use go:embed to embed console static assets 2021-06-04 07:28:22 +00:00
plugins cli: metadata apply,export enhancements 2021-05-14 19:09:59 +00:00
seed cli,ci: testsuite enhancements 2021-06-03 13:27:24 +00:00
telemetry cli: add directory name as an argument to init cmd (#3590) 2019-12-25 14:01:29 +05:30
update cli: update promptui dependency (#51) 2020-11-18 13:36:24 +00:00
util cli: add e2e tests for metadata and migrate commands 2021-04-05 14:01:35 +00:00
version cli: fix cli compatibility check message 2021-05-19 09:32:33 +00:00
.gitignore cli: merges cli-ext with cli 2021-03-17 15:10:03 +00:00
.realize.yaml cli: update go-binddata, fix realize (close #3588) (#3687) 2020-01-13 15:24:41 +05:30
cli.go cli: add interactive prompt to get input when --database-name flag is missing 2021-06-09 07:13:46 +00:00
CONTRIBUTING.md cli: merges cli-ext with cli 2021-03-17 15:10:03 +00:00
directory.go validate pwd is neither filesystem root nor an existing hasura project 2020-04-27 09:04:32 +05:30
get.sh cli: on m1 macs use darwin/amd64 builds in installation script 2021-05-03 08:00:44 +00:00
global_config.go Fix typo in debug logs 2021-05-11 06:49:28 +00:00
go.mod cli: use go:embed to embed console static assets 2021-06-04 07:28:22 +00:00
go.sum cli: use go:embed to embed console static assets 2021-06-04 07:28:22 +00:00
logger_hook.go cli: metadata apply,export enhancements 2021-05-14 19:09:59 +00:00
Makefile cli: use go:embed to embed console static assets 2021-06-04 07:28:22 +00:00
README.md cli: misc fixes 2020-11-24 06:12:24 +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
  • 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.