mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
36 lines
851 B
Go
36 lines
851 B
Go
package appjson
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/dokku/dokku/plugins/common"
|
|
)
|
|
|
|
// CommandReport displays a network report for one or more apps
|
|
func CommandReport(appName string, format string, infoFlag string) error {
|
|
if len(appName) == 0 {
|
|
apps, err := common.DokkuApps()
|
|
if err != nil {
|
|
if errors.Is(err, common.NoAppsExist) {
|
|
common.LogWarn(err.Error())
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
for _, appName := range apps {
|
|
if err := ReportSingleApp(appName, format, infoFlag); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
return ReportSingleApp(appName, format, infoFlag)
|
|
}
|
|
|
|
// CommandSet set or clear a builder property for an app
|
|
func CommandSet(appName string, property string, value string) error {
|
|
common.CommandPropertySet("app-json", appName, property, value, DefaultProperties, GlobalProperties)
|
|
return nil
|
|
}
|