graphql-engine/cli
Aravind K P c86e9392b9 cli: remove outdated/unused config values
GitOrigin-RevId: 846553eeb468164d5134bc702747fe986b165c5b
2021-02-18 13:16:40 +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 metadata.yaml from migrations directory after update-config-v2 script (fixes #6112) 2021-02-18 10:48:34 +00:00
integration_test cli: refactor datasource -> database 2021-02-17 12:52:37 +00:00
internal cli: remove outdated/unused config values 2021-02-18 13:16:40 +00:00
metadata cli: refactor datasource -> database 2021-02-17 12:52:37 +00:00
migrate cli: use v2 replace_metadata in config v3 2021-02-18 05:37:46 +00:00
pkg/console cli: refactor datasource -> database 2021-02-17 12:52:37 +00:00
plugins cli: misc fixes 2020-11-24 06:12:24 +00:00
seed cli: refactor datasource -> database 2021-02-17 12:52:37 +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: support datasources 2021-01-18 17:12:09 +00:00
version cli: fix cron triggers not being exported on a metadata export (close #5047) (#5060) 2020-06-16 14:38:36 +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: remove outdated/unused config values 2021-02-18 13:16:40 +00:00
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: allow setting the release to get in cli/get.sh (#4348) 2020-06-25 17:56:53 +02:00
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 client package, statestore implementations, deprecate config v1 2021-02-17 04:21:11 +00:00
go.sum cli: add client package, statestore implementations, deprecate config v1 2021-02-17 04:21:11 +00:00
logger_hook.go cli: allow managing actions (#3859) 2020-02-24 21:44:46 +05:30
Makefile cli: add client package, statestore implementations, deprecate config v1 2021-02-17 04:21:11 +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.