UNPKG

1.04 kBMarkdownView Raw
1# @sutton-signwriting/sutton-signwriting
2
3[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/sutton-signwriting/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4
5<img alt="Sutton SignWriting" src="./docs/img/sutton-signwriting.io.png" width="100%">
6
7Source for [www.Sutton-SignWriting.io](https://www.sutton-signwriting.io).
8
9The site is built using [MkDocs](https://www.mkdocs.org/) and served from the [sutton-signwriting.github.io](https://github.com/sutton-signwriting/sutton-signwriting.github.io) repo.
10
11## Dependencies
12
13To create the documentation website, you need to install mkdocs and npm.
14
15``` bash
16sudo apt install mkdocs
17sudo apt install npm
18```
19
20## Documentation
21Modify the documentation files as needed.
22
23 mkdocs.yml
24 docs/*
25
26## Package Scripts
27``` bash
28# open server with live updates
29npm start
30
31# write website to site directory
32npm run build
33
34# write website to ../sutton-signwriting.github.io directory
35npm run deploy
36```