Skip to content

Commit 3f4a6b8

Browse files
authored
Merge pull request #153 from AvaCodeSolutions/docs/150/Start-Documentation
docs: #150 start project documentation
2 parents 9377002 + 878fff0 commit 3f4a6b8

21 files changed

Lines changed: 772 additions & 1 deletion

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ repos:
3535
language: system
3636
types: [python]
3737
args: [--config-file=pyproject.toml]
38-
exclude: ^(tests/|migrations/)
38+
exclude: ^(tests/|migrations/|docs/)
3939
require_serial: true
4040

4141
- id: django-check

.readthedocs.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: 2
2+
3+
build:
4+
os: ubuntu-22.04
5+
tools:
6+
python: "3.11"
7+
8+
python:
9+
install:
10+
- requirements: docs/requirements.txt
11+
- method: pip
12+
path: .
13+
extra_requirements:
14+
- docs
15+
16+
sphinx:
17+
configuration: docs/conf.py

docs/Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
8+
SOURCEDIR = source
9+
BUILDDIR = build
10+
11+
# Put it first so that "make" without argument is like "make help".
12+
help:
13+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14+
15+
.PHONY: help Makefile
16+
17+
# Catch-all target: route all unknown targets to Sphinx using the new
18+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19+
%: Makefile
20+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

docs/images/add-course-form.png

65.4 KB
Loading

docs/images/add-quiz-form.png

200 KB
Loading
70 KB
Loading

docs/images/courses-table.png

57 KB
Loading

docs/images/edit-organization.png

129 KB
Loading

docs/images/learner-progress.png

122 KB
Loading

docs/images/organizations.png

66.7 KB
Loading

0 commit comments

Comments
 (0)