Skip to content

Commit

Permalink
feat(apps): Create application via apps deploy (#272)
Browse files Browse the repository at this point in the history
* chore: Update to latest turbine

* feat: Create application on apps deploy

* chore: Add existing apps cmds

* chore: update wording on describe

* chore: Validate language as first step

* chore: Use meroxa-go stable in master

* fix: typo

Co-authored-by: janelletavares <[email protected]>

* fix: duplicate describe

Co-authored-by: janelletavares <[email protected]>
  • Loading branch information
raulb and janelletavares authored Mar 8, 2022
1 parent 5fe7052 commit 0c72c97
Show file tree
Hide file tree
Showing 14 changed files with 183 additions and 405 deletions.
10 changes: 5 additions & 5 deletions cmd/meroxa/root/apps/apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ import (
type Apps struct{}

const (
JavaScript = "javascript"
GoLang = "golang"
NodeJs = "nodejs"
JavaScript = "javascript"
GoLang = "golang"
NodeJs = "nodejs"
LanguageNotSupportedError = "Currently, we support \"javascript\" and \"golang\""
)

var (
Expand Down Expand Up @@ -64,9 +65,8 @@ func (*Apps) FeatureFlag() (string, error) {

func (*Apps) SubCommands() []*cobra.Command {
return []*cobra.Command{
builder.BuildCobraCommand(&Create{}),
builder.BuildCobraCommand(&Describe{}),
builder.BuildCobraCommand(&Deploy{}),
builder.BuildCobraCommand(&Describe{}),
builder.BuildCobraCommand(&Init{}),
builder.BuildCobraCommand(&List{}),
builder.BuildCobraCommand(&Remove{}),
Expand Down
130 changes: 0 additions & 130 deletions cmd/meroxa/root/apps/create.go

This file was deleted.

Loading

0 comments on commit 0c72c97

Please sign in to comment.