infobloxopen / atlas-cli

Apache License 2.0
14 stars 45 forks source link

Move atlas-cli from atlas-app-toolkit to atlas-cli repository #1

Closed ZachEddy closed 6 years ago

ZachEddy commented 6 years ago

Move Atlas CLI

This enormous pull request doesn't actually change much. Apart from moving some files around, this is almost identical to the toolkit CLI

I moved the Atlas CLI from the toolkit to the brand-spanking-new atlas-cli repository. I had to make a few changes, but the structure of bootstrapped applications has not changed. Here's a brief summary of what has changed:

1,871 additions and 1 deletion.

atlas-cli
├── LICENSE
├── Makefile
├── README.md
└── atlas
    ├── commands
    │   ├── bootstrap
    │   │   ├── bootstrap.go
    │   │   ├── formatting.go
    │   │   ├── formatting_test.go
    │   │   └── templates
    │   │       ├── Makefile.gotmpl
    │   │       ├── README.md.gotmpl
    │   │       ├── cmd
    │   │       │   ├── config.go.gotmpl
    │   │       │   ├── gateway
    │   │       │   │   ├── handler.go.gotmpl
    │   │       │   │   ├── main.go.gotmpl
    │   │       │   │   └── swagger.go.gotmpl
    │   │       │   └── server
    │   │       │       └── main.go.gotmpl
    │   │       ├── docker
    │   │       │   ├── Dockerfile.application.gotmpl
    │   │       │   └── Dockerfile.gateway.gotmpl
    │   │       ├── pkg
    │   │       │   ├── pb
    │   │       │   │   └── service.proto.gotmpl
    │   │       │   └── svc
    │   │       │       ├── zserver.go.gotmpl
    │   │       │       └── zserver_test.go.gotmpl
    │   │       └── template-bindata.go
    │   └── command.go
    ├── main.go
    └── main_test.go