2023-03-20 03:14:15 +00:00
|
|
|
# Tube Archivist Documentation
|
|
|
|
|
|
|
|
This is a work in progress, porting the old wiki to a more flexible documentation framework.
|
2023-03-20 03:35:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
## Development Environment
|
|
|
|
|
|
|
|
To just make simple changes, edit the markdown files within *mkdocs/docs* direclty.
|
|
|
|
|
|
|
|
To setup a local development server:
|
|
|
|
|
|
|
|
Install mkdocs with pip:
|
|
|
|
```
|
2023-03-21 01:52:26 +00:00
|
|
|
pip3 install mkdocs mkdocs-material
|
2023-03-20 03:35:43 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
From the AUR:
|
|
|
|
```
|
2023-03-21 01:52:26 +00:00
|
|
|
yay -S mkdocs mkdocs-material
|
2023-03-20 03:35:43 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
More details: [User Guide](https://www.mkdocs.org/user-guide/installation/)
|
|
|
|
|
|
|
|
Run the server from the *mkdocs* folder with:
|
|
|
|
```
|
|
|
|
mkdocs serve
|
|
|
|
```
|
|
|
|
|
|
|
|
And the site - with live reload enabled - should be available on [localhost:8000](http://localhost:8000/).
|