// AppCreate creates an app. func AppCreate(id string, buildpack string, remote string, noRemote bool) error { c, err := client.New() fmt.Print("Creating Application... ") quit := progress() app, err := apps.New(c, id) quit <- true <-quit if err != nil { return err } fmt.Printf("done, created %s\n", app.ID) if buildpack != "" { configValues := api.Config{ Values: map[string]interface{}{ "BUILDPACK_URL": buildpack, }, } if _, err = config.Set(c, app.ID, configValues); err != nil { return err } } if !noRemote { return git.CreateRemote(c.ControllerURL.Host, remote, app.ID) } fmt.Println("remote available at", git.RemoteURL(c.ControllerURL.Host, app.ID)) return nil }
// AppCreate creates an app. func AppCreate(id string, buildpack string, remote string, noRemote bool) error { c, err := client.New() if err != nil { return err } fmt.Print("Creating Application... ") quit := progress() app, err := apps.New(c, id) quit <- true <-quit if err != nil { return err } fmt.Printf("done, created %s\n", app.ID) if buildpack != "" { configValues := api.Config{ Values: map[string]interface{}{ "BUILDPACK_URL": buildpack, }, } if _, err = config.Set(c, app.ID, configValues); err != nil { return err } } if !noRemote { if err = git.CreateRemote(c.ControllerURL.Host, remote, app.ID); err != nil { if err.Error() == "exit status 128" { fmt.Println("To replace the existing git remote entry, run:") fmt.Printf(" git remote rename deis deis.old && deis git:remote -a %s\n", app.ID) } return err } } fmt.Println("remote available at", git.RemoteURL(c.ControllerURL.Host, app.ID)) return nil }