-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(docs): component sections added (#33)
## Description There were multiple sections in the docs that were the same information copy-and-pasted in several different pages. These changes pull out those sections into their own documents so that they can simply be imported where they are needed and allow for the content of many sections to be updated by only changing one file. ## Types of changes - [ ] Edits to existing documentation - [x] Changing documentation structure (relocating existing files, ensure redirects exist) - [x] Remote endpoints moved to own component - [x] Cli install instructions moved to own component - [x] Deployment instruction header moved to own component - [ ] Stylistic changes (provide screenshots above)
- Loading branch information
1 parent
2f0f3d7
commit d5e83e7
Showing
20 changed files
with
1,925 additions
and
1,383 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
### Clone the Astria [dev-cluster](https://github.com/astriaorg/dev-cluster/tree/main) | ||
|
||
```bash | ||
git clone --branch dusk-2 https://github.com/astriaorg/dev-cluster.git | ||
``` | ||
|
||
### Install the latest [astria cli](https://github.com/astriaorg/astria/releases/tag/cli-v0.2.0) | ||
|
||
import Tabs from '@theme/Tabs'; | ||
import TabItem from '@theme/TabItem'; | ||
|
||
<Tabs> | ||
<TabItem value="ARM Mac" label="ARM Mac" default> | ||
|
||
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.2.0/astria-cli-aarch64-apple-darwin.tar.gz > astria-cli.tar.gz | ||
tar -xvzf astria-cli.tar.gz | ||
|
||
</TabItem> | ||
<TabItem value="X86_64 Mac" label="X86_64 Mac"> | ||
|
||
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.2.0/astria-cli-x86_64-apple-darwin.tar.gz > astria-cli.tar.gz | ||
tar -xvzf astria-cli.tar.gz | ||
|
||
</TabItem> | ||
<TabItem value="x86_64 Linux" label="x86_64 Linux"> | ||
|
||
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.2.0/astria-cli-x86_64-unknown-linux-gnu.tar.gz > astria-cli.tar.gz | ||
tar -xvzf astria-cli.tar.gz | ||
|
||
</TabItem> | ||
<TabItem value="From Source" label="From Source"> | ||
|
||
cargo install astria-cli --git=https://github.com/astriaorg/astria --tag=cli-v0.2.0 --locked | ||
|
||
</TabItem> | ||
</Tabs> | ||
|
||
You'll also need to install the following tools: | ||
|
||
:::warning | ||
There is a bug in the latest Docker desktop release for MacOS | ||
Please install the following release: <https://docs.docker.com/desktop/release-notes/#4252> | ||
For more details see [here](https://github.com/docker/for-mac/issues/7100) | ||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import CLI from '../components/_astria-cli-install.mdx'; | ||
|
||
<CLI /> | ||
|
||
- kubectl - <https://kubernetes.io/docs/tasks/tools/> | ||
- helm - <https://helm.sh/docs/intro/install/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import CLI from '../components/_astria-cli-install.mdx'; | ||
|
||
<CLI /> | ||
|
||
- docker - <https://docs.docker.com/get-docker/> | ||
- kubectl - <https://kubernetes.io/docs/tasks/tools/> | ||
- helm - <https://helm.sh/docs/intro/install/> | ||
- kind - <https://kind.sigs.k8s.io/docs/user/quick-start/#installation> | ||
- just - <https://just.systems/man/en/chapter_4.html> | ||
- Foundry Cast and Forge tools - | ||
<https://book.getfoundry.sh/getting-started/installation> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
:::tip | ||
Want your own rollup? [Deploy it now!](https://deploy.astria.org/) | ||
|
||
To deploy your own rollup on the Astria Dusknet on your __local machine__, check out the | ||
[instructions here](/docs/local-rollup/introduction/)! | ||
|
||
To deploy your own rollup on the Astria Dusknet __remotely__, check out the | ||
[instructions here](/docs/cloud-rollup/digital-ocean/)! | ||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
The endpoints for the remote shared sequencer are: | ||
|
||
| NAME | HOSTS | ADDRESS | | ||
|-----|-----|-----| | ||
| Sequencer RPC | rpc.sequencer.dusk-2.devnet.astria.org | 34.111.73.187 | | ||
| Sequencer Faucet | faucet.sequencer.dusk-2.devnet.astria.org | 34.36.8.102 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.