diff --git a/kamal.go b/kamal.go index 5f73def..c5cd73b 100644 --- a/kamal.go +++ b/kamal.go @@ -29,35 +29,35 @@ func (a actionItem) FilterValue() string { return a.title } func actions() []actionItem { return []actionItem{ { - title: "🚀 Deploy", + title: "ķ°š° Deploy", desc: "kamal deploy -d ", buildArgs: func(dest, _ string) []string { return withDest([]string{"deploy"}, dest) }, }, { - title: "âš™ī¸ Setup", + title: "ķ°’“ Setup", desc: "kamal setup -d (provision servers & deploy)", buildArgs: func(dest, _ string) []string { return withDest([]string{"setup"}, dest) }, }, { - title: "🔑 Env Push", + title: "ķ°ˆ™ Env Push", desc: "kamal env push -d (push .env variables to servers)", buildArgs: func(dest, _ string) []string { return withDest([]string{"env", "push"}, dest) }, }, { - title: "â™ģī¸ Redeploy", + title: "ķ°‘™ Redeploy", desc: "kamal redeploy -d (skip build cache invalidation steps)", buildArgs: func(dest, _ string) []string { return withDest([]string{"redeploy"}, dest) }, }, { - title: "âĒ Rollback", + title: "ķ°¯ Rollback", desc: "kamal rollback -d ", needsVersion: true, buildArgs: func(dest, version string) []string { @@ -66,7 +66,7 @@ func actions() []actionItem { }, }, { - title: "💾 DB Dump (Backup)", + title: "ķ°†ŧ DB Dump (Backup)", desc: "kamal app exec -i -- /bin/sh -c 'pg_dump ...'", buildArgs: func(dest, _ string) []string { args := []string{"app", "exec", "-i"} @@ -76,7 +76,7 @@ func actions() []actionItem { }, }, { - title: "đŸ’ŋ DB Restore", + title: "ķ°—¨ DB Restore", desc: "kamal app exec -i -- /bin/sh -c 'pg_restore ...'", buildArgs: func(dest, _ string) []string { args := []string{"app", "exec", "-i"} @@ -86,35 +86,35 @@ func actions() []actionItem { }, }, { - title: "â„šī¸ App Details", + title: "ķ°‹Š App Details", desc: "kamal app details -d ", buildArgs: func(dest, _ string) []string { return withDest([]string{"app", "details"}, dest) }, }, { - title: "📝 App Logs", + title: "ķ°…Š App Logs", desc: "kamal app logs -d (last lines, no follow)", buildArgs: func(dest, _ string) []string { return withDest([]string{"app", "logs"}, dest) }, }, { - title: "⚡ App Boot", + title: "ķ°€ĩ App Boot", desc: "kamal app boot -d ", buildArgs: func(dest, _ string) []string { return withDest([]string{"app", "boot"}, dest) }, }, { - title: "🕒 Audit", + title: "ķ°šŒ Audit", desc: "kamal audit -d (recent deploy history)", buildArgs: func(dest, _ string) []string { return withDest([]string{"audit"}, dest) }, }, { - title: "đŸ—‘ī¸ Remove", + title: "ķ°†´ Remove", desc: "kamal remove -d (remove containers and images from servers)", buildArgs: func(dest, _ string) []string { return withDest([]string{"remove"}, dest)