Skip to content

Commit 01bc592

Browse files
authored
Merge pull request #17 from LibreSign/chore/rename-folders
chore: rename folders
2 parents 59fc463 + 290f790 commit 01bc592

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.docker/sphinx/scripts/entrypoint.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ echo "✅ Dependencies installed installed."
1515

1616
echo "🛠️ 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 &
2121
sphinx-autobuild --port 0 /app/docs/main /app/_build

docs/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
.PHONY: user admin dev all
2323

2424
main:
25-
sphinx-autobuild --port 0 /app/docs/main /app/_build
25+
sphinx-build -b html main ../_build
2626

2727
user:
28-
sphinx-build -b html user_manual /app/_build/user
28+
sphinx-build -b html user_manual user_manual ../_build
2929

3030
admin:
31-
sphinx-build -b html admin_manual /app/_build/admin
31+
sphinx-build -b html admin_manual admin_manual ../_build
3232

3333
dev:
34-
sphinx-build -b html developer_manual /app/_build/dev
34+
sphinx-build -b html developer_manual developer_manual ../_build
3535

3636
all: main user admin dev

docs/main/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ Welcome to LibreSign documentation
55

66
Chose 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/>`_

0 commit comments

Comments
 (0)