Skip to content

Commit fc8af74

Browse files
authored
Merge pull request #36 from LibreSign/chore/move-all-files-to-root-folder
chore: move all files to root folder
2 parents 246346e + fe87b6b commit fc8af74

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+13
-49
lines changed

.docker/sphinx/scripts/entrypoint.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ echo "🔍 Checking for required dependencies..."
88
echo "⬆️ Upgrading pip..."
99
python -m pip install --upgrade pip
1010

11-
echo "📥 Installing packages from /app/docs/requirements.txt..."
12-
pip install -r "/app/docs/requirements.txt"
11+
echo "📥 Installing packages from /app/requirements.txt..."
12+
pip install -r "/app/requirements.txt"
1313

1414
echo "✅ Dependencies installed installed."
1515

1616
echo "🛠️ Building documentation..."
1717

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 &
21-
sphinx-autobuild --port 0 /app/docs/main /app/_build
18+
sphinx-autobuild --port 0 /app/user_manual /app/_build/user_manual &
19+
sphinx-autobuild --port 0 /app/admin_manual /app/_build/admin_manual &
20+
sphinx-autobuild --port 0 /app/developer_manual /app/_build/developer_manual &
21+
sphinx-autobuild --port 0 /app/main /app/_build

.pipcache/.gitkeep

Whitespace-only changes.

docs/Makefile renamed to Makefile

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

2424
main:
25-
sphinx-build main ../_build
25+
sphinx-build main _build
2626

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

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

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

3636
all: main user admin dev
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)