File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ echo "✅ Dependencies installed installed."
1515
1616echo " 🛠️ Building documentation..."
1717
18- sphinx-autobuild --port 0 /app/docs/user_manual /app/_build/user &
19- sphinx-autobuild --port 0 /app/docs/admin_manual /app/_build/admin &
20- sphinx-autobuild --port 0 /app/docs/developer_manual /app/_build/dev &
18+ sphinx-autobuild --port 0 /app/docs/user_manual /app/_build/user_manual &
19+ sphinx-autobuild --port 0 /app/docs/admin_manual /app/_build/admin_manual &
20+ sphinx-autobuild --port 0 /app/docs/developer_manual /app/_build/developer_manual &
2121sphinx-autobuild --port 0 /app/docs/main /app/_build
Original file line number Diff line number Diff line change 2222.PHONY : user admin dev all
2323
2424main :
25- sphinx-autobuild --port 0 /app/docs/ main /app /_build
25+ sphinx-build -b html main .. /_build
2626
2727user :
28- sphinx-build -b html user_manual /app/ _build/user
28+ sphinx-build -b html user_manual user_manual ../ _build
2929
3030admin :
31- sphinx-build -b html admin_manual /app/ _build/admin
31+ sphinx-build -b html admin_manual admin_manual ../ _build
3232
3333dev :
34- sphinx-build -b html developer_manual /app/ _build/dev
34+ sphinx-build -b html developer_manual developer_manual ../ _build
3535
3636all : main user admin dev
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ Welcome to LibreSign documentation
55
66Chose one of the sections below to access the corresponding documentation:
77
8- - `User Documentation </user / >`_
9- - `Developer Documentation </dev / >`_
10- - `Admin Documentation </admin / >`_
8+ - `User manual </user_manual / >`_
9+ - `Developer manual </developer_manual / >`_
10+ - `Admin manual </admin_manual / >`_
You can’t perform that action at this time.
0 commit comments