Skip to content
New issue

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

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

Already on GitHub? # to your account

Refresh Documentation #1135

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft
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
3 changes: 3 additions & 0 deletions docs/.markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"MD033": false
}
5 changes: 5 additions & 0 deletions docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM sphinxdoc/sphinx

WORKDIR /docs
RUN pip3 install myst-parser sphinx-design furo linkify-it-py

19 changes: 18 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# Fieldmark Documentation

This is suport documentation for users wanting to learn about the Fieldmark Webapp, Android and iOS versions.
This directory contains two collections of documentation for Fieldmark.
The `docs` folder contains user facing documentation. The
[developer](developer/README.md) folder contains internal developer documentation.

## Building User Facing Documentation

Documentation can be built locally using Sphinx or via a docker image. To
build the local docker image with sphinx plugins installed:

```bash
docker build . -t faims-sphinx
```

To build the documentation:

```bash
docker run --rm -v ./docs:/docs faims-sphinx make html
```
Empty file removed docs/bundle
Empty file.
2 changes: 2 additions & 0 deletions docs/developer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ of FAIMS for developers. It is separate from user facing documentation
in the `docs` folder and is not intended for separate publication.

* [Adding New Field Types](Fields.md)
* [Configuration of the Mobile App](Configuration.md)
* [Android Deployment](Android-Deployment.md)
37 changes: 0 additions & 37 deletions docs/docs/_static/css/about.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/docs/_static/foo

This file was deleted.

2 changes: 1 addition & 1 deletion docs/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = "Fieldmark"
copyright = "2023, Electronic Field Notebooks Pty Ltd"
copyright = "2024, Electronic Field Notebooks Pty Ltd"
author = "Electronic Field Notebooks Pty Ltd"
release = "0.7.940"

Expand Down
Loading
Loading