-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Reworked the Documentation. * Updated pipeline.
- Loading branch information
1 parent
cb28e67
commit f9ba98b
Showing
15 changed files
with
409 additions
and
136 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
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 @@ | ||
.venv |
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 |
---|---|---|
@@ -1,33 +1,120 @@ | ||
# Project information | ||
site_name: OSDU Developer | ||
site_author: Microsoft Azure Energy | ||
site_name: OSDU Developer | ||
site_url: https://azure.github.io/osdu-developer/ | ||
site_author: Daniel Scholl | ||
site_description: >- | ||
OSDU Developer - Personal Instances : Simplified | ||
docs_dir: src | ||
|
||
theme: readthedocs | ||
# Repository | ||
repo_name: azure/osdu-developer | ||
repo_url: https://github.com/azure/osdu-developer | ||
|
||
extra_css: | ||
- css/override.css | ||
# Copyright | ||
copyright: Copyright © Microsoft Corporation. | ||
|
||
extra: | ||
generator: false | ||
|
||
# Configuration | ||
theme: | ||
name: material | ||
logo: images/favicon.png | ||
favicon: images/favicon.ico | ||
# custom_dir: overrides | ||
font: | ||
text: Inter | ||
code: Fira Code | ||
features: | ||
- content.code.copy | ||
- navigation.collapsible | ||
- navigation.instant | ||
- navigation.instant.preview | ||
- navigation.tabs | ||
- navigation.sections | ||
- search.highlight | ||
- search.share | ||
- search.suggest | ||
palette: | ||
# Palette toggle for automatic mode | ||
- media: "(prefers-color-scheme)" | ||
toggle: | ||
icon: material/toggle-switch | ||
name: Switch to light mode | ||
|
||
# # Palette toggle for light mode | ||
- media: "(prefers-color-scheme: light)" | ||
scheme: default | ||
primary: custom | ||
toggle: | ||
icon: material/toggle-switch | ||
name: Switch to dark mode | ||
|
||
# Palette toggle for dark mode | ||
- media: "(prefers-color-scheme: dark)" | ||
scheme: slate | ||
primary: custom | ||
toggle: | ||
icon: material/toggle-switch-off | ||
name: Switch to system preference | ||
|
||
markdown_extensions: | ||
- attr_list | ||
- pymdownx.emoji: | ||
emoji_index: !!python/name:material.extensions.emoji.twemoji | ||
emoji_generator: !!python/name:material.extensions.emoji.to_svg | ||
- pymdownx.highlight: | ||
anchor_linenums: true | ||
line_spans: __span | ||
pygments_lang_class: true | ||
- pymdownx.inlinehilite | ||
- pymdownx.snippets | ||
- pymdownx.superfences: | ||
custom_fences: | ||
- name: mermaid | ||
class: mermaid | ||
format: !!python/name:pymdownx.superfences.fence_code_format | ||
- pymdownx.tabbed: | ||
alternate_style: true | ||
- admonition | ||
- def_list | ||
- attr_list | ||
|
||
# Plugins | ||
plugins: | ||
- search | ||
- mermaid2 | ||
- search: | ||
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])' | ||
- minify: | ||
minify_html: true | ||
|
||
extra_javascript: | ||
- https://unpkg.com/[email protected]/dist/tablesort.min.js | ||
- javascripts/tablesort.js | ||
extra_css: | ||
- stylesheets/extra.css | ||
|
||
nav: | ||
- index.md | ||
- before_you_start.md | ||
- architecture.md | ||
- software.md | ||
- feature_flags.md | ||
- Concepts: | ||
- concepts_overview.md | ||
- before_you_start.md | ||
- feature_flags.md | ||
- Architecture: | ||
- architecture.md | ||
- software.md | ||
- Tutorials: | ||
- tutorial_cli.md | ||
- tutorial_click.md | ||
- tutorial_rest.md | ||
- tutorial_vnet.md | ||
- OSDU Services: | ||
- osdu_source.md | ||
- osdu_core.md | ||
- osdu_reference.md | ||
- tutorials_overview.md | ||
- Deployment: | ||
- tutorial_cli.md | ||
- tutorial_click.md | ||
- tutorial_rest.md | ||
- Debugging: | ||
- tutorial_logs.md | ||
- tutorial_metrics.md | ||
- Advanced Scenarios: | ||
- tutorial_vnet.md | ||
- Services: | ||
- services_overview.md | ||
- services_core.md | ||
- services_reference.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
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.
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 @@ | ||
document$.subscribe(function() { | ||
var tables = document.querySelectorAll("article table:not([class])") | ||
tables.forEach(function(table) { | ||
new Tablesort(table) | ||
}) | ||
}) |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Core Services | ||
# OSDU Core | ||
|
||
This repository can be used to hold the source code for the OSDU Core Services. | ||
|
||
|
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 @@ | ||
# OSDU Reference |
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,24 @@ | ||
:root > * { | ||
--md-typeset-a-color: #0199a1; | ||
--md-footer-fg-color: hsla(0, 0%, 100%, 1); | ||
--md-footer-fg-color--light: hsla(0, 0%, 100%, 0.7); | ||
--md-footer-fg-color--lighter: hsla(0, 0%, 100%, 0.3); | ||
--md-footer-bg-color: #01393b;; | ||
--md-footer-bg-color--dark: #01393b; | ||
--md-typeset-a-color: #0199a1; | ||
} | ||
|
||
[data-md-color-scheme="default"] { | ||
--md-primary-fg-color: #01696e; | ||
--md-accent-fg-color: #02c9d3; | ||
} | ||
|
||
[data-md-color-scheme="slate"] { | ||
--md-primary-fg-color: #01393b; | ||
--md-accent-fg-color: #02c9d3; | ||
} | ||
|
||
li.md-nav__item--section > label.md-nav__link > span.md-ellipsis { | ||
color: #01696e; | ||
} | ||
|
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 @@ | ||
# Working with Airflow | ||
|
||
Coming soon. |
Oops, something went wrong.