Skip to content

Instantly share code, notes, and snippets.

@josehelps
Created July 19, 2018 04:07
Show Gist options
  • Save josehelps/7acf9d782d773b65aa63e1c64da1fbd4 to your computer and use it in GitHub Desktop.
Save josehelps/7acf9d782d773b65aa63e1c64da1fbd4 to your computer and use it in GitHub Desktop.
[~/go/src/github.com/goadesign/goa-cellar on master!]
└── # tree
.
├── LICENSE
├── Makefile
├── README.md
├── app
│   ├── contexts.go
│   ├── controllers.go
│   ├── hrefs.go
│   ├── media_types.go
│   ├── test
│   │   ├── account_testing.go
│   │   ├── bottle_testing.go
│   │   ├── health_testing.go
│   │   ├── js_testing.go
│   │   ├── public_testing.go
│   │   ├── schema_testing.go
│   │   └── swagger_testing.go
│   └── user_types.go
├── app.yaml.vm
├── cellar
│   ├── app.yaml
│   ├── appengine.go
│   └── public
│   ├── html
│   │   └── index.html
│   ├── js
│   │   ├── axios.min.js
│   │   ├── client.js
│   │   ├── example.go
│   │   └── index.html
│   ├── schema
│   │   └── schema.json
│   └── swagger
│   ├── favicon-16x16.png
│   ├── favicon-32x32.png
│   ├── index.html
│   ├── oauth2-redirect.html
│   ├── swagger-ui-bundle.js
│   ├── swagger-ui-bundle.js.map
│   ├── swagger-ui-standalone-preset.js
│   ├── swagger-ui-standalone-preset.js.map
│   ├── swagger-ui.css
│   ├── swagger-ui.css.map
│   ├── swagger-ui.js
│   ├── swagger-ui.js.map
│   ├── swagger.json
│   └── swagger.yaml
├── client
│   ├── account.go
│   ├── bottle.go
│   ├── client.go
│   ├── health.go
│   ├── js.go
│   ├── media_types.go
│   ├── public.go
│   ├── swagger.go
│   └── user_types.go
├── controllers
│   ├── account.go
│   ├── account_test.go
│   ├── bottle.go
│   ├── bottle_test.go
│   ├── health.go
│   ├── helpers_test.go
│   ├── js.go
│   ├── public.go
│   └── swagger.go
├── design
│   ├── api_definition.go
│   ├── health.go
│   ├── media_types.go
│   ├── resources.go
│   └── user_types.go
├── main.go
├── mainvm.go
├── schema
│   └── schema.json
├── store
│   └── db.go
├── swagger
│   ├── swagger.json
│   └── swagger.yaml
└── tool
├── cellar-cli
│   └── main.go
└── cli
└── commands.go
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment