https://github.com/terra-money/new-docs
New docs site
https://github.com/terra-money/new-docs
Last synced: about 1 month ago
JSON representation
New docs site
- Host: GitHub
- URL: https://github.com/terra-money/new-docs
- Owner: terra-money
- License: other
- Created: 2022-06-24T19:05:17.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-29T15:25:14.000Z (about 2 years ago)
- Last Synced: 2025-05-15T07:15:47.636Z (5 months ago)
- Language: JavaScript
- Size: 21.2 MB
- Stars: 2
- Watchers: 5
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terra Docs
## Setup
### Installation
```
$ yarn
```### Local Development
```
$ yarn start
```This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
### Build
```
$ yarn build
```This command generates static content into the `build` directory and can be served using any static contents hosting service.
### Deployment
Using SSH:
```
$ USE_SSH=true yarn deploy
```Not using SSH:
```
$ GIT_USER= yarn deploy
```If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
## Syntax
### Admonitions
You can use admonitions by importing them and using the following syntax:
```
import Admonition from '@theme/Admonition';Some **content** with _markdown_ `syntax`.
```
The `icon` and `title` values are optional.
Admonition types:
```
note
tip
info
caution
danger
```### Details
For dropdown details, use the following syntax:
example````
hidden content
````````
Title```
hidden content
```````
### Comments
```
{/*
this is a comment in mdx
*/}```