Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update product name #324

Merged
merged 2 commits into from
Apr 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/meroxa/root/apps/apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func (*Apps) Usage() string {

func (*Apps) Docs() builder.Docs {
return builder.Docs{
Short: "Manage Meroxa Data Applications",
Short: "Manage Turbine Data Applications",
}
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/meroxa/root/apps/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func (*Deploy) Usage() string {

func (*Deploy) Docs() builder.Docs {
return builder.Docs{
Short: "Deploy a Meroxa Data Application",
Short: "Deploy a Turbine Data Application",
Long: `This command will deploy the application specified in '--path'
(or current working directory if not specified) to our Meroxa Platform.
If deployment was successful, you should expect an application you'll be able to fully manage
Expand Down
4 changes: 2 additions & 2 deletions cmd/meroxa/root/apps/describe.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ type Describe struct {
}

flags struct {
Extended bool `long:"extended" usage:"whether to show additional details about the Meroxa Data Application"`
Extended bool `long:"extended" usage:"whether to show additional details about the Turbine Data Application"`
}
}

Expand All @@ -65,7 +65,7 @@ func (d *Describe) Usage() string {

func (d *Describe) Docs() builder.Docs {
return builder.Docs{
Short: "Describe Meroxa Data Application",
Short: "Describe a Turbine Data Application",
}
}

Expand Down
4 changes: 2 additions & 2 deletions cmd/meroxa/root/apps/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func (*Init) Usage() string {

func (*Init) Docs() builder.Docs {
return builder.Docs{
Short: "Initialize a Meroxa Data Application",
Short: "Initialize a Turbine Data Application",
Example: `meroxa apps init my-app --path ~/code --lang js
meroxa apps init my-app --lang go # will be initialized in a dir called my-app in the current directory
meroxa apps init my-app --lang go --skip-mod-init # will not initialize the new go module
Expand Down Expand Up @@ -148,7 +148,7 @@ func (i *Init) Execute(ctx context.Context) error {
return err
}

i.logger.Infof(ctx, "Application successfully initialized!\n"+
i.logger.Infof(ctx, "Turbine Data Application successfully initialized!\n"+
"You can start interacting with Meroxa in your app located at \"%s/%s\"", i.path, name)

return nil
Expand Down
2 changes: 1 addition & 1 deletion cmd/meroxa/root/apps/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func (l *List) Usage() string {

func (l *List) Docs() builder.Docs {
return builder.Docs{
Short: "List Meroxa Data apps",
Short: "List Turbine Data Applications",
}
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/meroxa/root/apps/remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func (r *Remove) Usage() string {

func (r *Remove) Docs() builder.Docs {
return builder.Docs{
Short: "Removes a Meroxa Data Application",
Short: "Removes a Turbine Data Application",
}
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/meroxa/root/apps/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func (*Run) Usage() string {

func (*Run) Docs() builder.Docs {
return builder.Docs{
Short: "Execute a Meroxa Data Application locally",
Short: "Execute a Turbine Data Application locally",
Long: "meroxa apps run will build your app locally to then run it locally in --path.",
Example: `meroxa apps run # assumes you run it from the app directory
meroxa apps run --path ../go-demo # it'll use lang defined in your app.json
Expand Down
2 changes: 1 addition & 1 deletion docs/cmd/md/meroxa.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ meroxa resources list --types
### SEE ALSO

* [meroxa api](meroxa_api.md) - Invoke Meroxa API
* [meroxa apps](meroxa_apps.md) - Manage Meroxa Data Applications
* [meroxa apps](meroxa_apps.md) - Manage Turbine Data Applications
* [meroxa auth](meroxa_auth.md) - Authentication commands for Meroxa
* [meroxa billing](meroxa_billing.md) - Open your billing page in a web browser
* [meroxa builds](meroxa_builds.md) - Inspect Process Builds on Meroxa
Expand Down
14 changes: 7 additions & 7 deletions docs/cmd/md/meroxa_apps.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## meroxa apps

Manage Meroxa Data Applications
Manage Turbine Data Applications

### Options

Expand All @@ -20,10 +20,10 @@ Manage Meroxa Data Applications
### SEE ALSO

* [meroxa](meroxa.md) - The Meroxa CLI
* [meroxa apps deploy](meroxa_apps_deploy.md) - Deploy a Meroxa Data Application
* [meroxa apps describe](meroxa_apps_describe.md) - Describe Meroxa Data Application
* [meroxa apps init](meroxa_apps_init.md) - Initialize a Meroxa Data Application
* [meroxa apps list](meroxa_apps_list.md) - List Meroxa Data apps
* [meroxa apps remove](meroxa_apps_remove.md) - Removes a Meroxa Data Application
* [meroxa apps run](meroxa_apps_run.md) - Execute a Meroxa Data Application locally
* [meroxa apps deploy](meroxa_apps_deploy.md) - Deploy a Turbine Data Application
* [meroxa apps describe](meroxa_apps_describe.md) - Describe a Turbine Data Application
* [meroxa apps init](meroxa_apps_init.md) - Initialize a Turbine Data Application
* [meroxa apps list](meroxa_apps_list.md) - List Turbine Data Applications
* [meroxa apps remove](meroxa_apps_remove.md) - Removes a Turbine Data Application
* [meroxa apps run](meroxa_apps_run.md) - Execute a Turbine Data Application locally

4 changes: 2 additions & 2 deletions docs/cmd/md/meroxa_apps_deploy.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## meroxa apps deploy

Deploy a Meroxa Data Application
Deploy a Turbine Data Application

### Synopsis

Expand Down Expand Up @@ -39,5 +39,5 @@ meroxa apps deploy --path ./my-app

### SEE ALSO

* [meroxa apps](meroxa_apps.md) - Manage Meroxa Data Applications
* [meroxa apps](meroxa_apps.md) - Manage Turbine Data Applications

6 changes: 3 additions & 3 deletions docs/cmd/md/meroxa_apps_describe.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## meroxa apps describe

Describe Meroxa Data Application
Describe a Turbine Data Application

```
meroxa apps describe [NAMEorUUID] [flags]
Expand All @@ -9,7 +9,7 @@ meroxa apps describe [NAMEorUUID] [flags]
### Options

```
--extended whether to show additional details about the Meroxa Data Application
--extended whether to show additional details about the Turbine Data Application
-h, --help help for describe
```

Expand All @@ -24,5 +24,5 @@ meroxa apps describe [NAMEorUUID] [flags]

### SEE ALSO

* [meroxa apps](meroxa_apps.md) - Manage Meroxa Data Applications
* [meroxa apps](meroxa_apps.md) - Manage Turbine Data Applications

4 changes: 2 additions & 2 deletions docs/cmd/md/meroxa_apps_init.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## meroxa apps init

Initialize a Meroxa Data Application
Initialize a Turbine Data Application

```
meroxa apps init [APP_NAME] [--path pwd] --lang js|go [flags]
Expand Down Expand Up @@ -38,5 +38,5 @@ meroxa apps init my-app --lang go --path $GOPATH/src/github.com/my.org

### SEE ALSO

* [meroxa apps](meroxa_apps.md) - Manage Meroxa Data Applications
* [meroxa apps](meroxa_apps.md) - Manage Turbine Data Applications

4 changes: 2 additions & 2 deletions docs/cmd/md/meroxa_apps_list.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## meroxa apps list

List Meroxa Data apps
List Turbine Data Applications

```
meroxa apps list [flags]
Expand All @@ -24,5 +24,5 @@ meroxa apps list [flags]

### SEE ALSO

* [meroxa apps](meroxa_apps.md) - Manage Meroxa Data Applications
* [meroxa apps](meroxa_apps.md) - Manage Turbine Data Applications

4 changes: 2 additions & 2 deletions docs/cmd/md/meroxa_apps_remove.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## meroxa apps remove

Removes a Meroxa Data Application
Removes a Turbine Data Application

```
meroxa apps remove NAME [flags]
Expand All @@ -24,5 +24,5 @@ meroxa apps remove NAME [flags]

### SEE ALSO

* [meroxa apps](meroxa_apps.md) - Manage Meroxa Data Applications
* [meroxa apps](meroxa_apps.md) - Manage Turbine Data Applications

4 changes: 2 additions & 2 deletions docs/cmd/md/meroxa_apps_run.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## meroxa apps run

Execute a Meroxa Data Application locally
Execute a Turbine Data Application locally

### Synopsis

Expand Down Expand Up @@ -37,5 +37,5 @@ meroxa apps run --path ../go-demo # it'll use lang defined in your app.json

### SEE ALSO

* [meroxa apps](meroxa_apps.md) - Manage Meroxa Data Applications
* [meroxa apps](meroxa_apps.md) - Manage Turbine Data Applications

4 changes: 2 additions & 2 deletions docs/cmd/www/meroxa-apps-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ url: /cli/cmd/meroxa-apps-deploy/
---
## meroxa apps deploy

Deploy a Meroxa Data Application
Deploy a Turbine Data Application

### Synopsis

Expand Down Expand Up @@ -46,5 +46,5 @@ meroxa apps deploy --path ./my-app

### SEE ALSO

* [meroxa apps](/cli/cmd/meroxa-apps/) - Manage Meroxa Data Applications
* [meroxa apps](/cli/cmd/meroxa-apps/) - Manage Turbine Data Applications

6 changes: 3 additions & 3 deletions docs/cmd/www/meroxa-apps-describe.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ url: /cli/cmd/meroxa-apps-describe/
---
## meroxa apps describe

Describe Meroxa Data Application
Describe a Turbine Data Application

```
meroxa apps describe [NAMEorUUID] [flags]
Expand All @@ -16,7 +16,7 @@ meroxa apps describe [NAMEorUUID] [flags]
### Options

```
--extended whether to show additional details about the Meroxa Data Application
--extended whether to show additional details about the Turbine Data Application
-h, --help help for describe
```

Expand All @@ -31,5 +31,5 @@ meroxa apps describe [NAMEorUUID] [flags]

### SEE ALSO

* [meroxa apps](/cli/cmd/meroxa-apps/) - Manage Meroxa Data Applications
* [meroxa apps](/cli/cmd/meroxa-apps/) - Manage Turbine Data Applications

4 changes: 2 additions & 2 deletions docs/cmd/www/meroxa-apps-init.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ url: /cli/cmd/meroxa-apps-init/
---
## meroxa apps init

Initialize a Meroxa Data Application
Initialize a Turbine Data Application

```
meroxa apps init [APP_NAME] [--path pwd] --lang js|go [flags]
Expand Down Expand Up @@ -45,5 +45,5 @@ meroxa apps init my-app --lang go --path $GOPATH/src/github.com/my.org

### SEE ALSO

* [meroxa apps](/cli/cmd/meroxa-apps/) - Manage Meroxa Data Applications
* [meroxa apps](/cli/cmd/meroxa-apps/) - Manage Turbine Data Applications

4 changes: 2 additions & 2 deletions docs/cmd/www/meroxa-apps-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ url: /cli/cmd/meroxa-apps-list/
---
## meroxa apps list

List Meroxa Data apps
List Turbine Data Applications

```
meroxa apps list [flags]
Expand All @@ -31,5 +31,5 @@ meroxa apps list [flags]

### SEE ALSO

* [meroxa apps](/cli/cmd/meroxa-apps/) - Manage Meroxa Data Applications
* [meroxa apps](/cli/cmd/meroxa-apps/) - Manage Turbine Data Applications

4 changes: 2 additions & 2 deletions docs/cmd/www/meroxa-apps-remove.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ url: /cli/cmd/meroxa-apps-remove/
---
## meroxa apps remove

Removes a Meroxa Data Application
Removes a Turbine Data Application

```
meroxa apps remove NAME [flags]
Expand All @@ -31,5 +31,5 @@ meroxa apps remove NAME [flags]

### SEE ALSO

* [meroxa apps](/cli/cmd/meroxa-apps/) - Manage Meroxa Data Applications
* [meroxa apps](/cli/cmd/meroxa-apps/) - Manage Turbine Data Applications

4 changes: 2 additions & 2 deletions docs/cmd/www/meroxa-apps-run.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ url: /cli/cmd/meroxa-apps-run/
---
## meroxa apps run

Execute a Meroxa Data Application locally
Execute a Turbine Data Application locally

### Synopsis

Expand Down Expand Up @@ -44,5 +44,5 @@ meroxa apps run --path ../go-demo # it'll use lang defined in your app.json

### SEE ALSO

* [meroxa apps](/cli/cmd/meroxa-apps/) - Manage Meroxa Data Applications
* [meroxa apps](/cli/cmd/meroxa-apps/) - Manage Turbine Data Applications

14 changes: 7 additions & 7 deletions docs/cmd/www/meroxa-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ url: /cli/cmd/meroxa-apps/
---
## meroxa apps

Manage Meroxa Data Applications
Manage Turbine Data Applications

### Options

Expand All @@ -27,10 +27,10 @@ Manage Meroxa Data Applications
### SEE ALSO

* [meroxa](/cli/cmd/meroxa/) - The Meroxa CLI
* [meroxa apps deploy](/cli/cmd/meroxa-apps-deploy/) - Deploy a Meroxa Data Application
* [meroxa apps describe](/cli/cmd/meroxa-apps-describe/) - Describe Meroxa Data Application
* [meroxa apps init](/cli/cmd/meroxa-apps-init/) - Initialize a Meroxa Data Application
* [meroxa apps list](/cli/cmd/meroxa-apps-list/) - List Meroxa Data apps
* [meroxa apps remove](/cli/cmd/meroxa-apps-remove/) - Removes a Meroxa Data Application
* [meroxa apps run](/cli/cmd/meroxa-apps-run/) - Execute a Meroxa Data Application locally
* [meroxa apps deploy](/cli/cmd/meroxa-apps-deploy/) - Deploy a Turbine Data Application
* [meroxa apps describe](/cli/cmd/meroxa-apps-describe/) - Describe a Turbine Data Application
* [meroxa apps init](/cli/cmd/meroxa-apps-init/) - Initialize a Turbine Data Application
* [meroxa apps list](/cli/cmd/meroxa-apps-list/) - List Turbine Data Applications
* [meroxa apps remove](/cli/cmd/meroxa-apps-remove/) - Removes a Turbine Data Application
* [meroxa apps run](/cli/cmd/meroxa-apps-run/) - Execute a Turbine Data Application locally

2 changes: 1 addition & 1 deletion docs/cmd/www/meroxa.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ meroxa resources list --types
### SEE ALSO

* [meroxa api](/cli/cmd/meroxa-api/) - Invoke Meroxa API
* [meroxa apps](/cli/cmd/meroxa-apps/) - Manage Meroxa Data Applications
* [meroxa apps](/cli/cmd/meroxa-apps/) - Manage Turbine Data Applications
* [meroxa auth](/cli/cmd/meroxa-auth/) - Authentication commands for Meroxa
* [meroxa billing](/cli/cmd/meroxa-billing/) - Open your billing page in a web browser
* [meroxa builds](/cli/cmd/meroxa-builds/) - Inspect Process Builds on Meroxa
Expand Down
2 changes: 1 addition & 1 deletion etc/man/man1/meroxa-apps-deploy.1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

.SH NAME
.PP
meroxa\-apps\-deploy \- Deploy a Meroxa Data Application
meroxa\-apps\-deploy \- Deploy a Turbine Data Application


.SH SYNOPSIS
Expand Down
6 changes: 3 additions & 3 deletions etc/man/man1/meroxa-apps-describe.1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

.SH NAME
.PP
meroxa\-apps\-describe \- Describe Meroxa Data Application
meroxa\-apps\-describe \- Describe a Turbine Data Application


.SH SYNOPSIS
Expand All @@ -13,13 +13,13 @@ meroxa\-apps\-describe \- Describe Meroxa Data Application

.SH DESCRIPTION
.PP
Describe Meroxa Data Application
Describe a Turbine Data Application


.SH OPTIONS
.PP
\fB\-\-extended\fP[=false]
whether to show additional details about the Meroxa Data Application
whether to show additional details about the Turbine Data Application

.PP
\fB\-h\fP, \fB\-\-help\fP[=false]
Expand Down
Loading