Skip to content

Commit 065b7fa

Browse files
committed
update installation instructions
1 parent 417d3cd commit 065b7fa

File tree

10 files changed

+36
-18
lines changed

10 files changed

+36
-18
lines changed

website/docs/quick-start/install-atmos.mdx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import TabItem from '@theme/TabItem';
1010
import Link from '@docusaurus/Link';
1111
import Intro from '@site/src/components/Intro'
1212
import LatestRelease from '@site/src/components/LatestRelease'
13+
import File from '@site/src/components/File'
1314

1415
<Intro>
1516
There are many ways to install Atmos. Choose the method that works best for you!
@@ -32,6 +33,16 @@ Atmos has native packages for macOS and every major Linux distribution. We also
3233
```shell
3334
brew install atmos
3435
```
36+
37+
#### Pro tip! Use a `Brewfile`
38+
39+
Create a `Brewfile` in your Atmos project, and add `brew "atmos"`. This way, you can ensure that everyone on your team is using the same version of Atmos.
40+
41+
<File title="Brewfile">
42+
<pre><code>brew "atmos", "<LatestRelease />"</code></pre>
43+
</File>
44+
45+
Then just run `brew install` in the same directory as the `Brewfile`.
3546
</TabItem>
3647

3748
<TabItem value="deb" label="Debian/Ubuntu">
@@ -141,7 +152,7 @@ Atmos has native packages for macOS and every major Linux distribution. We also
141152
</Tabs>
142153

143154
:::note
144-
The latest version of Atmos might not be available with third party package managers.
155+
The latest version of Atmos (<LatestRelease />) might not be available with third party package managers.
145156
:::
146157

147158

website/docs/quick-start/simple/configure-cli.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Configure Atmos CLI
33
sidebar_position: 2
4-
sidebar_label: Configure Atmos CLI
4+
sidebar_label: 2. Configure Atmos CLI
55
---
66
import EmbedFile from '@site/src/components/EmbedFile'
77
import KeyPoints from '@site/src/components/KeyPoints'

website/docs/quick-start/simple/configure-repository.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Start Your Project
33
sidebar_position: 1
4-
sidebar_label: Start Your Project
4+
sidebar_label: 1. Start Your Project
55
---
66
import KeyPoints from '@site/src/components/KeyPoints'
77
import Intro from '@site/src/components/Intro'

website/docs/quick-start/simple/create-atmos-stacks.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Use Your Component in a Stack
33
sidebar_position: 4
4-
sidebar_label: Configure with Stacks
4+
sidebar_label: 4. Configure with Stacks
55
---
66
import File from '@site/src/components/File'
77
import KeyPoints from '@site/src/components/KeyPoints'

website/docs/quick-start/simple/provision.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Deploy Everything
33
sidebar_position: 5
4-
sidebar_label: Deploy Everything
4+
sidebar_label: 5. Deploy Everything
55
---
66
import KeyPoints from '@site/src/components/KeyPoints'
77
import Intro from '@site/src/components/Intro'

website/docs/quick-start/simple/simple.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ In this simple example, we’re going to show you how you can Terraform the weat
1717
allowing us to concentrate on the core concepts of Atmos.
1818
</Intro>
1919

20-
You're about discover a new way to think about terraform...
21-
22-
Start your first project in 5 easy steps. After this, you'll be able to configure and provision infrastructure with Terraform using Atmos.
20+
You're about discover [a new way to think about terraform...](/quick-start/mindset)
2321

2422
<KeyPoints>
2523
1. How to set up a project repository to organize your Terraform code and configurations
@@ -54,4 +52,6 @@ Then, maybe checkout the "Extra Credit" to learn how to...
5452

5553
## What's Included
5654

55+
Start your first project in 5 easy steps. After this, you'll be able to configure and provision infrastructure with Terraform using Atmos.
56+
5757
<DocCardList/>

website/docs/quick-start/simple/summary.mdx

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
---
2-
title: Summary
2+
title: Where to go from here...
33
sidebar_position: 8
4-
sidebar_label: Summary
4+
sidebar_label: Next Steps
55
---
66
import KeyPoints from '@site/src/components/KeyPoints'
77
import Intro from '@site/src/components/Intro'
8+
import ActionCard from '@site/src/components/ActionCard'
9+
import PrimaryCTA from '@site/src/components/PrimaryCTA'
810

911
<Intro>
1012
Atmos provides unlimited flexibility in defining and configuring stacks and components in the stacks.
@@ -21,16 +23,17 @@ Atmos provides unlimited flexibility in defining and configuring stacks and comp
2123
All the above makes Atmos an ideal framework to organize infrastructure, to design for organizational complexity, and to provision multi-account
2224
environments for very complex organizations.
2325

24-
## Next Steps
25-
26-
You have just learned the **basics of Atmos**.
27-
28-
Atmos is a powerful enterprise-grade workflow automation tool with so **much more to offer**!
29-
3026
## What's next?
3127

3228
Here are some of the major differentiators of Atmos:
3329

3430
1. [Review Atmos Design Patterns](/design-patterns)
3531
2. [Use GitHub Actions](/integrations/github-actions)
3632
3. [Try the Advanced Tutorial](/quick-start/advanced)
33+
34+
<ActionCard title="Next Steps">
35+
Now that you’ve seen Atmos in action, take a moment to explore the core concepts of Atmos.
36+
37+
You have only just scratched the surface Atmos. Atmos is a powerful enterprise-grade framework with so **much more to offer**!
38+
<PrimaryCTA to="/core-concepts">Learn Core Concepts</PrimaryCTA>
39+
</ActionCard>

website/docs/quick-start/simple/write-components.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Write Some Components
33
sidebar_position: 3
4-
sidebar_label: Write Some Components
4+
sidebar_label: 3. Write Some Components
55
---
66
import EmbedFile from '@site/src/components/EmbedFile'
77
import KeyPoints from '@site/src/components/KeyPoints'

website/src/components/ActionCard/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
margin-right: 100%;
2929
}
3030

31-
.action-card div a.button.button--lg.button--primary {
31+
.action-card p > div a.button.button--lg.button--primary {
3232
margin-right: inherit;
3333
}
3434

website/src/css/custom.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,10 @@ article ul >li, article ol > li {
193193
margin-bottom: 1em;
194194
}
195195

196+
article ul >li::marker, article ol > li::marker {
197+
font-weight: bold;
198+
}
199+
196200
article ul li a:first-child, article ol li a:first-child {
197201
font-weight: bold;
198202
}

0 commit comments

Comments
 (0)