Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Readthedocs #79

Merged
merged 2 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ build:
# VIRTUAL_ENV needs to be set manually for now.
# See https://github.com/readthedocs/readthedocs.org/pull/11152/
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install --no-root --sync
&& poetry run mkdocs build

mkdocs:
configuration: mkdocs.yml
Expand Down
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
serve: poetry
poetry run mkdocs serve -a localhost:8888
poetry run mkdocs serve --strict -a localhost:8888

build: poetry
poetry run mkdocs build
poetry run mkdocs build --strict

poetry:
poetry install --no-root --sync
Expand Down
6 changes: 4 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,20 @@ nav:
- Data: data/README.md
- Record: record/README.md
- Surveys: surveys/README.md
- Templates: templates/README.md
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn
exclude_docs: |
node_modules
lookit-initjspsych/CHANGELOG.md
CHANGELOG.md
!templates
theme:
name: readthedocs
plugins:
- search
- macros
extra:
jsPsych: https://www.jspsych.org/7.3/
jsPsych: https://www.jspsych.org/v8/
3 changes: 3 additions & 0 deletions packages/templates/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Templates

This is the beginning of the templates documentation.
Loading