Skip to content

Commit 4d3377b

Browse files
Merge pull request #13 from EvaluationContext/feature/opus-redesign
Feature/opus redesign
2 parents 6e8d9cf + cd31855 commit 4d3377b

575 files changed

Lines changed: 148877 additions & 139636 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.devcontainer/devcontainer.json

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
1-
{
2-
"name": "mkdocs",
3-
"image": "mcr.microsoft.com/devcontainers/python",
4-
"forwardPorts": [8000],
5-
"postCreateCommand": "pip install -r requirements.txt",
6-
"customizations": {
7-
"vscode": {
8-
"extensions": [
9-
// Git
10-
"mhutchie.git-graph",
11-
// Spell checker
12-
"streetsidesoftware.code-spell-checker",
13-
// YAML support
14-
"redhat.vscode-yaml"
15-
],
16-
"settings": {
17-
"terminal.integrated.defaultProfile.linux": "zsh",
18-
"yaml.schemas": {
19-
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
20-
},
21-
"yaml.customTags": [
22-
"!ENV scalar",
23-
"!ENV sequence",
24-
"!relative scalar",
25-
"tag:yaml.org,2002:python/name:material.extensions.emoji.to_svg",
26-
"tag:yaml.org,2002:python/name:material.extensions.emoji.twemoji",
27-
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format",
28-
"tag:yaml.org,2002:python/object/apply:pymdownx.slugs.slugify mapping"
29-
]
30-
}
31-
}
32-
}
33-
}
1+
{
2+
"name": "mkdocs",
3+
"image": "mcr.microsoft.com/devcontainers/python",
4+
"forwardPorts": [8000],
5+
"postCreateCommand": "pip install -r requirements.txt",
6+
"customizations": {
7+
"vscode": {
8+
"extensions": [
9+
// Git
10+
"mhutchie.git-graph",
11+
// Spell checker
12+
"streetsidesoftware.code-spell-checker",
13+
// YAML support
14+
"redhat.vscode-yaml"
15+
],
16+
"settings": {
17+
"terminal.integrated.defaultProfile.linux": "zsh",
18+
"yaml.schemas": {
19+
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
20+
},
21+
"yaml.customTags": [
22+
"!ENV scalar",
23+
"!ENV sequence",
24+
"!relative scalar",
25+
"tag:yaml.org,2002:python/name:material.extensions.emoji.to_svg",
26+
"tag:yaml.org,2002:python/name:material.extensions.emoji.twemoji",
27+
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format",
28+
"tag:yaml.org,2002:python/object/apply:pymdownx.slugs.slugify mapping"
29+
]
30+
}
31+
}
32+
}
33+
}

.github/workflows/ci.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
name: ci
2-
on:
3-
push:
4-
branches:
5-
- master
6-
- main
7-
permissions:
8-
contents: write
9-
jobs:
10-
deploy:
11-
runs-on: ubuntu-latest
12-
steps:
13-
- uses: actions/checkout@v3
14-
- uses: actions/setup-python@v4
15-
with:
16-
python-version: 3.x
17-
- uses: actions/cache@v4
18-
with:
19-
key: ${{ github.ref }}
20-
path: .cache
21-
- run: pip install -r requirements.txt
22-
- run: pip install pillow cairosvg
1+
name: ci
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- main
7+
permissions:
8+
contents: write
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-python@v4
15+
with:
16+
python-version: 3.x
17+
- uses: actions/cache@v4
18+
with:
19+
key: ${{ github.ref }}
20+
path: .cache
21+
- run: pip install -r requirements.txt
22+
- run: pip install pillow cairosvg
2323
- run: mkdocs gh-deploy --force

LICENSE

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
MIT License
2-
3-
Copyright (c) 2022 just-the-docs
4-
5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
11-
12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
1+
MIT License
2+
3+
Copyright (c) 2022 just-the-docs
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)