Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
69e62568
Commit
69e62568
authored
Jan 06, 2016
by
Matt Butcher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(*): add scaffolded cli app.
parent
546ee53a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
4 deletions
+46
-4
helm.go
cmd/helm.go
+39
-0
glide.lock
glide.lock
+5
-3
glide.yaml
glide.yaml
+2
-1
No files found.
cmd/helm.go
0 → 100644
View file @
69e62568
package
main
import
(
"os"
"github.com/codegangsta/cli"
)
var
version
=
"0.0.1"
func
main
()
{
app
:=
cli
.
NewApp
()
app
.
Name
=
"helm"
app
.
Version
=
version
app
.
Usage
=
`Deploy and manage packages.`
app
.
Commands
=
commands
()
app
.
Run
(
os
.
Args
)
}
func
commands
()
[]
cli
.
Command
{
return
[]
cli
.
Command
{
{
Name
:
"install"
,
},
{
Name
:
"target"
,
},
{
Name
:
"doctor"
,
},
{
Name
:
"deploy"
,
},
{
Name
:
"search"
,
},
}
}
glide.lock
View file @
69e62568
hash: 9ec7498a0fe304c2d06e42e1d233ee43cfc090abdd0523c102136831263233b6
updated: 2016-01-06T13:45:44.400476304-08:00
imports: []
hash: 2f47b12bf634894e182800b5565efd124c6defff6291b60408cbba6a038778ae
updated: 2016-01-06T13:51:49.954407735-08:00
imports:
- name: github.com/codegangsta/cli
version: c31a7975863e7810c92e2e288a9ab074f9a88f29
devImports: []
glide.yaml
View file @
69e62568
package
:
github.com/engineyard/helm-dm
import
:
[]
import
:
-
package
:
github.com/codegangsta/cli
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment