29 lines
490 B
Markdown
29 lines
490 B
Markdown
# Setting Up
|
|
|
|
## Steps
|
|
|
|
### Local
|
|
|
|
1. Install node.js and yarn.
|
|
|
|
2. Clone the [documentation repository](https://github.com/llama-bot/llama-bot-docs).
|
|
|
|
```bash
|
|
git clone https://github.com/llama-bot/llama-bot-docs
|
|
```
|
|
|
|
3. Install dependencies.
|
|
|
|
```bash
|
|
yarn install
|
|
```
|
|
|
|
4. Test locally. Live edit is supported.
|
|
|
|
```bash
|
|
yarn start
|
|
```
|
|
|
|
### Deployment
|
|
|
|
1. Follow the [instructions from docusaurus](https://docusaurus.io/docs/deployment#deploying-to-github-pages)
|