README.md in lono-7.5.2 vs README.md in lono-8.0.0.pre.rc1
- old
+ new
@@ -16,11 +16,11 @@
## Lono Features
* Simple CLI interface to launch CloudFormation stacks.
* Ability to use [Existing CloudFormation Templates](https://lono.cloud/docs/existing-templates/).
* [The Lono DSL](https://lono.cloud/docs/dsl/) - Generate templates from beautiful code.
-* Write your CloudFormation parameters with [simple env-like values](https://lono.cloud/docs/configs/params/).
+* Write your CloudFormation parameters with [simple env-like values](https://lono.cloud/docs/config/params/).
* Preview CloudFormation changes before pressing the big red button.
* [Layering](https://lono.cloud/docs/core/layering/) - Allows you to build multiple environments like development and production with the same template.
* [Variables](https://lono.cloud/docs/layering/variables/) - Allows you to construct templates where runtime Parameters do not suffice.
* [Helpers](https://lono.cloud/docs/core/helpers/) - Allows you to extend Lono and simplify code.
* [Configsets](https://lono.cloud/docs/configsets/) - Configurement Management. Automatically configure EC2 instances with reuseable code.
@@ -37,11 +37,11 @@
gem install lono
lono new infra
cd infra
lono blueprint new demo
- lono cfn deploy demo
+ lono up demo
![Lono flowchart](https://lono.cloud/img/tutorial/lono-flowchart.png "Lono flowchart")
## DSL
@@ -71,12 +71,12 @@
output("SecurityGroup", get_att("SecurityGroup.GroupId"))
```
### Lono Cfn Deploy
-Lono provides a `lono cfn` lifecycle command that allows you to launch stacks quickly. The `lono cfn deploy` generates and launches the CloudFormation stack. If you are in a lono project and have a `demo` lono blueprint. To create a stack run:
+Lono provides a `lono cfn` lifecycle command that allows you to launch stacks quickly. The `lono up` generates and launches the CloudFormation stack. If you are in a lono project and have a `demo` lono blueprint. To create a stack run:
- $ lono cfn deploy demo
+ $ lono up demo
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)