1206.2.1
by Martin Packman
Add copyright statement at the top of all go files bar thirdparty |
1 |
// Copyright 2013 Canonical Ltd.
|
2 |
// Licensed under the AGPLv3, see LICENCE file for details.
|
|
3 |
||
894.8.2
by Tim Penhey
More working on help. |
4 |
package main |
5 |
||
894.8.30
by Tim Penhey
Rename help_basics to helpBasics. |
6 |
const helpBasics = ` |
894.8.5
by Tim Penhey
More progress on help. |
7 |
Juju -- devops distilled
|
8 |
https://juju.ubuntu.com/
|
|
9 |
||
10 |
Juju provides easy, intelligent service orchestration on top of environments
|
|
11 |
such as OpenStack, Amazon AWS, or bare metal.
|
|
12 |
||
13 |
Basic commands:
|
|
14 |
juju init generate boilerplate configuration for juju environments
|
|
15 |
juju bootstrap start up an environment from scratch
|
|
16 |
||
17 |
juju deploy deploy a new service
|
|
18 |
juju add-relation add a relation between two services
|
|
19 |
juju expose expose a service
|
|
20 |
||
21 |
juju help bootstrap more help on e.g. bootstrap command
|
|
22 |
juju help commands list all commands
|
|
23 |
juju help topics list all help topics
|
|
894.8.2
by Tim Penhey
More working on help. |
24 |
`
|