Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Generating documentation for the server
Generating the server documentation involves a few more steps.
You need to follow the same preparatory steps as you did to [generate this document](./general.md).
That is installing make and installing the server.
Run the following:
```bash
cd server/
mkdir docs
cd docs/
sphinx-quickstart
```
You will be asked a few questions about how to configure Sphinx.
Just press enter on all, which will use the default.
You can enter the correct projet name and/or author if you want, but it's not necessary, no one but you will see it anyway.
Then will need to modify a few files.
First add the following code snippet after the first block of comments, above the "project information" comment, in the file `./server/docs/conf.py`:
```py
import os
import sys
basepath = os.path.dirname(__file__)
filepath = os.path.abspath(os.path.join(basepath, "../"))
sys.path.insert(0, filepath)
```
Then in the same file add an extension to the list of extensions, like so:
```py
extensions = ["sphinx.ext.autodoc"]
```
Then just write the word app on line 13 in the file `server/docs/index.rst`.
The file will then look something like:
```
.. toctree::
:maxdepth: 2
:caption: Contents:
app
```
Then the documentation can be generated by running (still in the docs/ folder):
```bash
sphinx-apidoc -o ./ ../app --no-toc -f --separate --module-first
make html
```
You can then open it by typing:
```bash
start ./_build/html/index.html
```
You could add all of the files we just added, except `_build/`, to Git if you want.