From 8edac192e059ed31db570aaf56471def4310c01c Mon Sep 17 00:00:00 2001 From: Sridhar Ganesan Date: Tue, 17 Jul 2018 21:50:25 +0200 Subject: [PATCH] Moving cli.md to cosmos-sdk-cli.md --- docs/sdk/{cli.md => cosmos-sdk-cli.md} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename docs/sdk/{cli.md => cosmos-sdk-cli.md} (56%) diff --git a/docs/sdk/cli.md b/docs/sdk/cosmos-sdk-cli.md similarity index 56% rename from docs/sdk/cli.md rename to docs/sdk/cosmos-sdk-cli.md index c71d48e0b4..5486230493 100644 --- a/docs/sdk/cli.md +++ b/docs/sdk/cosmos-sdk-cli.md @@ -21,14 +21,14 @@ This will initialize a project, the dependencies, directory structures with the ### Example: ```shell -cosmos-sdk-cli init testzone +cosmos-sdk-cli init testzone -p github.com/your_user_name/testzone ``` +-p remote project path (optional). If this is not provided, it creates testzone under $GOPATH/src/ -This will ask for a remote path for the project - usually github.com/your_user_name/testzone and will create a new testzone application under $GOPATH/src/github.com/your_user_name/testzone along with Makefile ```shell cd $GOPATH/src/github.com/your_user_name/testzone make ``` -This will create two binaries(testzonecli and testzoned) under bin folder. testzoned is the full node of the application which you can run, and testzonecli is your light client. +This will create two binaries(basecli and basecoind) under bin folder. basecoind is the full node of the application which you can run, and basecli is your light client.