Skip to content

Commit

Permalink
add cli commands reference, update cli tutorials
Browse files Browse the repository at this point in the history
  • Loading branch information
sambukowski committed May 22, 2024
1 parent 4eae626 commit bd0340f
Show file tree
Hide file tree
Showing 14 changed files with 584 additions and 67 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,27 @@ The Astria Docs website built with [VitePress](https://vitepress.dev/)
### Installation

To get started, clone the repository and run the following:

```
npm add -D vitepress
```

### Local Development

To run a local development site:

```
npm run docs:dev
```

This command starts a local development server. Most changes are reflected live without having to restart the server.


### Build


```
npm run docs:build
```


This command generates static content into the `build` directory and can be served using any static contents hosting service.

### Deployment
Expand Down
16 changes: 16 additions & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,22 @@ function sidebar() {
}
]
},
{
text: 'References',
collapsed: true,
items: [
{text: 'Astria Endpoints', link: '/developer/references/endpoints.md'},
{
text: 'astria-go cli',
collapsed: true,
items: [
{text: 'Installation', link: '/developer/references/astria-go/cli-installation.md'},
{text: 'Commands', link: '/developer/references/astria-go/cli-commands.md'},
{text: 'Networks Configuration', link: '/developer/references/astria-go/cli-networks-configuration.md'},
]
}
]
},
{
text: 'The Astria EVM', link: '/astria-evm/overview'
},
Expand Down
18 changes: 0 additions & 18 deletions docs/components/_astria-go-cli-commands.md

This file was deleted.

Loading

0 comments on commit bd0340f

Please sign in to comment.