Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
DDnK-dev committed Jun 10, 2024
1 parent 9812f36 commit b9bc16f
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
25 changes: 25 additions & 0 deletions cmd/yorkie/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,31 @@ import (
"os"
)

/*
Document store for collaborative applications based on CRDT
Usage:
yorkie [command]
Available Commands:
completion Generate the autocompletion script for the specified shell
context Manage contexts
document Manage documents
help Help about any command
history Show the history of a document
login Log in to Yorkie server
logout Log out from the Yorkie server
project Manage projects
server Start Yorkie server
version Print the version number of Yorkie
Flags:
-h, --help help for yorkie
--rpc-addr string Address of the rpc server (default "localhost:8080")
Use "yorkie [command] --help" for more information about a command.
*/

func main() {
os.Exit(Run())
}
9 changes: 9 additions & 0 deletions docs/install_test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Install Yorkie
# install istio with istio-operator
$ curl -L https://istio.io/downloadIstio | sh -
$ export PATH="$PATH:/home/dongwoo/istio-1.22.1/bin"
$ istioctl install -f <(curl -s https://raw.githubusercontent.com/yorkie-team/yorkie/main/build/charts/yorkie-cluster/istio-operator.yaml)
y

#
#

0 comments on commit b9bc16f

Please sign in to comment.