An open API service indexing awesome lists of open source software.

https://github.com/terra-money/alliance-docs


https://github.com/terra-money/alliance-docs

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# Alliance 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
*/}
```