forked from mxcube/mxcubeweb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
51f32b1
commit 9d9f45f
Showing
26 changed files
with
467 additions
and
1,259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
|
||
|
||
name: "Pages" | ||
|
||
on: | ||
push: | ||
|
||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
|
||
"build-job": | ||
|
||
runs-on: "ubuntu-latest" # tested with ubuntu-22.04 | ||
|
||
steps: | ||
|
||
- name: "Setup Python" | ||
uses: "actions/setup-python@v4" # tested with v4.7.0 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: "Install Poetry" | ||
run: "python -m pip install poetry" # tested with Poetry v1.5.1 | ||
|
||
- name: "Checkout" | ||
uses: "actions/checkout@v4" # tested with v4.0.0 | ||
|
||
- name: "Install dependencies with Poetry" | ||
run: "poetry install" | ||
|
||
- name: "Build documentation with Sphinx" | ||
run: "poetry run make html" | ||
|
||
|
||
... # EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
################# | ||
Table of contents | ||
################# | ||
|
||
Contents: | ||
|
||
.. toctree:: | ||
:glob: | ||
:titlesonly: | ||
|
||
* | ||
dev/index | ||
rest-api/index |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
```{include} ../../../CONTRIBUTING.md | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
*********************** | ||
Development environment | ||
*********************** | ||
|
||
See instructions to prepare a development environment on the |wikilink|_ . | ||
|
||
.. |wikilink| replace:: |project| wiki | ||
.. _wikilink: https://github.com/mxcube/mxcubeweb/wiki |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
####################### | ||
Developer documentation | ||
####################### | ||
|
||
.. toctree:: | ||
:glob: | ||
:titlesonly: | ||
|
||
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
```{include} ../../README.md | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
***************** | ||
Beamline REST API | ||
***************** | ||
|
||
.. autoflask:: mxcube3:server.flask | ||
:blueprints: beamline |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
***************** | ||
Detector REST API | ||
***************** | ||
|
||
.. autoflask:: mxcube3:server.flask | ||
:blueprints: detector |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
*********************** | ||
Diffractometer REST API | ||
*********************** | ||
|
||
.. autoflask:: mxcube3:server.flask | ||
:blueprints: diffractometer |
Oops, something went wrong.