Skip to content
This repository was archived by the owner on Jan 16, 2021. It is now read-only.

Commit 48a4ee6

Browse files
committed
update readme & version of parse-cli, fix help message
1 parent 10120ab commit 48a4ee6

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,21 @@ It can be used to create new Parse apps, deploy Cloud Code to an app, view all r
1313

1414
You can install `Parse Command Line Tool` by following instructions at [parse-cli](https://parse.com/apps/quickstart#cloud_code/).
1515

16-
Alternatively, you can just type the following command (assuming you already have Go installed).
16+
Alternatively, you can just type the following command.
17+
18+
NOTE: You should already have [Go](https://golang.org/doc/install) installed and GOPATH, GOROOT set to appropriate values.
19+
1720
```bash
18-
go get github.com/ParsePlatform/parse-cli
21+
go get -t github.com/ParsePlatform/parse-cli
1922
```
23+
2024
This installs a binary called `parse-cli` at `$GOPATH/bin`.
25+
Further, you can find the code for Parse CLI at: `$GOPATH/src/github.com/ParsePlatform/parse-cli`.
2126

2227
The following commands are currently available in the `Parse Command Line Tool`:
2328
```bash
2429
add Adds a new Parse app to config in current Cloud Code directory
30+
configure Configure various Parse settings
2531
default Sets or gets the default Parse app
2632
deploy Deploys a Parse app
2733
develop Monitors for changes to code and deploys, also tails parse logs

configure_cmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func newConfigureCmd(e *env) *cobra.Command {
5252

5353
cmd := &cobra.Command{
5454
Use: "configure",
55-
Short: "Configure various Parse settings.",
55+
Short: "Configure various Parse settings",
5656
Long: "Configure various Parse settings like access tokens, project type, and more.",
5757
Run: func(c *cobra.Command, args []string) {
5858
c.Help()

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
)
1313

1414
const (
15-
version = "2.2.1"
15+
version = "2.2.2"
1616
cloudDir = "cloud"
1717
hostingDir = "public"
1818
defaultBaseURL = "https://api.parse.com/1/"

0 commit comments

Comments
 (0)