Skip to content

Commit e60cfa2

Browse files
authored
Merge pull request #51 from RETR0-OS/copilot/complete-missing-documentation
Complete missing documentation files and add MkDocs configuration
2 parents c920265 + 08d0af1 commit e60cfa2

File tree

14 files changed

+5296
-1
lines changed

14 files changed

+5296
-1
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@ ModelForge.egg-info/*
2020
ModelForge.egg-info/
2121
*.egg-info
2222
*.lock
23-
unsloth_compiled_cache/*
23+
unsloth_compiled_cache/*
24+
# MkDocs build directory
25+
site/

.readthedocs.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Read the Docs configuration file
2+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3+
4+
version: 2
5+
6+
# Build documentation in the docs/ directory with MkDocs
7+
mkdocs:
8+
configuration: mkdocs.yml
9+
10+
# Optionally build your docs in additional formats such as PDF and ePub
11+
formats:
12+
- pdf
13+
- epub
14+
15+
# Python environment for building docs
16+
build:
17+
os: ubuntu-22.04
18+
tools:
19+
python: "3.11"
20+
21+
# Install Python dependencies for documentation
22+
python:
23+
install:
24+
- requirements: docs/requirements.txt

0 commit comments

Comments
 (0)