Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/docs/README.md
diff options
context:
space:
mode:
authorremLse <remlause@gmail.com>2021-12-18 19:01:40 +0100
committerGitHub <noreply@github.com>2021-12-18 19:01:40 +0100
commitc6b499cf47fac7a02714e590cf662a85db3095b1 (patch)
tree0124b8921120ba557d5025bb7d1dd5ce9c7f13d9 /docs/README.md
parent7a018415862677c165494decc5d8ad9e06c65fb7 (diff)
Update documentation (#803)
* Add guide for building docs locally * Update documentation - Fix typos - Fix some formatting - Fix broken links - Improve readability of json profile specification
Diffstat (limited to 'docs/README.md')
-rw-r--r--docs/README.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/README.md b/docs/README.md
new file mode 100644
index 00000000..7ab47d26
--- /dev/null
+++ b/docs/README.md
@@ -0,0 +1,17 @@
+## Dependencies
+
+In order to build the docs locally, you need to have the following installed:
+
+- [sphinx-doc](https://www.sphinx-doc.org/en/master/usage/installation.html)
+- [sphinx-rdt-theme](https://pypi.org/project/sphinx-rtd-theme/)
+
+For example, you may install these dependencies using pip:
+```
+pip install -U sphinx sphinx-rtd-theme
+```
+
+For other installation methods refer to the docs of the dependencies.
+
+## Build
+
+In `archinstall/docs`, run `make html` (or specify another target) to build locally. The build files will be in `archinstall/docs/_build`. Open `_build/html/index.html` with your browser to see your changes in action. \ No newline at end of file