Skip to content

Commit

Permalink
update readme and change copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel van Gils committed Jul 10, 2017
1 parent a6de976 commit b833d5b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,12 @@ http://www.startwithdocker.com/
### Quick Start:
___

If you are on OS X, the best way to install starter is using homebrew

Just run the install script on macOS or Linux!

$ brew tap cloud66/tap
$ brew install c66starter
`curl -sSL https://raw.githubusercontent.com/cloud66/starter/master/install.sh | bash`

Alternatively you can download the latest release executable and run it on your development machine.
Or [download](https://github.com/cloud66/starter/releases?utm_source=Githubdownload&utm_medium=GHDpage&utm_campaign=starter) Starter straight from this repo. Starter can run on Linux, Windows and macOS. Copy the Starter application into `/usr/local/bin/starter` and check if it has the executable flags, if not run `chmod a+x /usr/local/bin/starter`. Containerize your first application with Starter now:


$ cd /my/project
Expand All @@ -68,7 +67,7 @@ Alternatively you can download the latest release executable and run it on your
This will analyze the project in the current folder and generate the three files: `Dockerfile, docker-compose.yml and `service.yml` in the same folder, prompting for information when required.


Cloud 66 Starter ~ (c) 2016 Cloud 66
Cloud 66 Starter ~ (c) 2017 Cloud 66
Detecting framework for the project at /Users/awesome/work/boom
Found ruby application
Enter ruby version: [latest]
Expand Down Expand Up @@ -110,7 +109,7 @@ If you want to contribute to Starter. You can build Starter using [Habitus](http

Run Habitus in the root directory of this repository. The latest version is generated (after tests) inside the `./artifacts/compiled` directory.

<kbd>$ sudo habitus –host $DOCKER\_HOST –certs $DOCKER\_CERT\_PATH</kbd>
<kbd>habitus --keep-artifacts=true</kbd>

To make sure you a have isolated development environment for contribution. You can use the `docker-compose` for developing, testing and compiling.

Expand Down
4 changes: 3 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ import (
"github.com/cloud66/starter/packs"
"github.com/getsentry/raven-go"
"runtime"
"github.com/cloud66/starter/vendor/github.com/getsentry/raven-go"
"github.com/cloud66/starter/vendor/github.com/mitchellh/go-homedir"
)

type downloadFile struct {
Expand Down Expand Up @@ -242,7 +244,7 @@ func main() {
config.SetDefaults()
}

common.PrintlnTitle("Starter (c) 2016 Cloud66 Inc.")
common.PrintlnTitle("Starter (c) 2017 Cloud66 Inc.")

// Run in daemon mode
if flagDaemon {
Expand Down

0 comments on commit b833d5b

Please sign in to comment.