-
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
Christian Förster
committed
Sep 18, 2024
0 parents
commit 6a8ac5e
Showing
95 changed files
with
3,564 additions
and
0 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,41 @@ | ||
name: Build Jupyter Book | ||
|
||
# Trigger this action on push to the main branch | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build-jupyter-book: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Checkout the repository | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
# Set up Python | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11' | ||
|
||
# Install Jupyter Book and dependencies | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install jupyter-book | ||
# Build the Jupyter Book | ||
- name: Build Jupyter Book | ||
run: | | ||
jupyter-book build --all docs | ||
# Upload the build folder as an artifact | ||
- name: Upload build folder as artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: eric-documentation | ||
path: ./docs/_build/html # Adjust the path if your output folder is different | ||
|
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,3 @@ | ||
venv | ||
_build | ||
.ipynb_checkpoints |
Large diffs are not rendered by default.
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,21 @@ | ||
# ERIC Documentation | ||
|
||
This repository contains the documentation for ERIC/internal and ERIC/open. | ||
It utilizes Jupyterbook to generate HTML from `.md` and `.ipynb` files. | ||
|
||
Follow this [Guide](https://jupyterbook.org/en/stable/start/overview.html) on how to set up your python environment. | ||
|
||
To build run: | ||
```bash | ||
jupyter-book build --all docs/ | ||
``` | ||
|
||
## Nice to know | ||
With this command you can generate gifs from all png files in folder: | ||
```bash | ||
convert -delay 150 -loop 0 *.png output.gif | ||
``` | ||
|
||
## Known issues | ||
You might need to copy videos (`.mp4`) to the build directory manually. | ||
|
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,34 @@ | ||
# Book settings | ||
# Learn more at https://jupyterbook.org/customize/config.html | ||
|
||
title: ERIC Documentation | ||
author: Christian Foerster - rdm@eawag.ch | ||
logo: _static/images/light_logo.png | ||
copyright: "2024" | ||
|
||
# Force re-execution of notebooks on each build. | ||
# See https://jupyterbook.org/content/execute.html | ||
execute: | ||
execute_notebooks: force | ||
|
||
# Information about where the book exists on the web | ||
repository: | ||
url: https://github.com/eawag-rdm/eric-documentation # Online location of your book | ||
branch: main # Which branch of the repository should be used when creating links (optional) | ||
|
||
# Add GitHub buttons to your book | ||
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository | ||
html: | ||
favicon: _static/images/favicon-96x96.png | ||
home_page_in_navbar: false | ||
use_edit_page_button: true | ||
use_issues_button: true | ||
use_repository_button: true | ||
|
||
sphinx: | ||
config: | ||
html_theme_options: | ||
logo: | ||
image_light: _static/images/light_logo.png | ||
image_dark: _static/images/dark_logo.png | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+2.74 MB
docs/_static/screenshots/create_package_images/2_landing_page_marked.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1.3 MB
docs/_static/screenshots/create_package_images/4_packages_page_marked.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+213 KB
docs/_static/screenshots/edit_package/add_resources/5-add-resources.png
Oops, something went wrong.
Binary file added
BIN
+214 KB
docs/_static/screenshots/edit_package/add_resources/6-add-resources-marked.png
Oops, something went wrong.
Binary file added
BIN
+238 KB
docs/_static/screenshots/edit_package/add_resources/7-add-resource.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+248 KB
docs/_static/screenshots/edit_package/edit_resources/4-edit-marked.png
Oops, something went wrong.
Binary file added
BIN
+213 KB
docs/_static/screenshots/edit_package/edit_resources/5-add-resources.png
Oops, something went wrong.
Binary file added
BIN
+215 KB
docs/_static/screenshots/edit_package/edit_resources/6-add-resources-marked.png
Oops, something went wrong.
Binary file added
BIN
+240 KB
docs/_static/screenshots/edit_package/edit_resources/7-edit-resource.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+263 KB
...creenshots/scroll_package_creation_form/Screenshot from 2024-09-12 14-46-07.png
Oops, something went wrong.
Binary file added
BIN
+219 KB
...creenshots/scroll_package_creation_form/Screenshot from 2024-09-12 14-46-12.png
Oops, something went wrong.
Binary file added
BIN
+236 KB
...creenshots/scroll_package_creation_form/Screenshot from 2024-09-12 14-46-16.png
Oops, something went wrong.
Binary file added
BIN
+234 KB
...creenshots/scroll_package_creation_form/Screenshot from 2024-09-12 14-46-20.png
Oops, something went wrong.
Binary file added
BIN
+213 KB
...creenshots/scroll_package_creation_form/Screenshot from 2024-09-12 14-46-24.png
Oops, something went wrong.
Binary file added
BIN
+210 KB
...creenshots/scroll_package_creation_form/Screenshot from 2024-09-12 14-46-27.png
Oops, something went wrong.
Binary file added
BIN
+214 KB
...creenshots/scroll_package_creation_form/Screenshot from 2024-09-12 14-46-30.png
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,15 @@ | ||
# Table of contents | ||
# Learn more at https://jupyterbook.org/customize/toc.html | ||
|
||
format: jb-book | ||
root: intro | ||
options: | ||
maxdepth: 3 | ||
chapters: | ||
- file: overview | ||
- file: quickstart | ||
- file: publish-a-data-package | ||
- file: archiving-guide | ||
- file: examples | ||
- file: automation | ||
- file: faq |
Oops, something went wrong.