Skip to content

Commit 93e3356

Browse files
committed
updated actions yml and requirements
1 parent b9c11a3 commit 93e3356

File tree

3 files changed

+27
-52
lines changed

3 files changed

+27
-52
lines changed

.github/workflows/mkdocsDeploySoteriaCurate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install mkdocs mkdocs-material # Ensure all dependencies are listed
24+
pip install -r requirements.txt
2525
2626
- name: Build and Deploy Curate Documentation
2727
env:

mkdocs-soteria-plus.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,32 @@ theme:
55
name: 'material'
66
logo: /curate-documentation/assets/Max Communications Logo Large.png
77
palette:
8-
primary: custom
8+
# Light mode
9+
- media: "(prefers-color-scheme: light)"
10+
scheme: default
11+
primary: custom
12+
accent: teal
13+
toggle:
14+
icon: material/brightness-7
15+
name: Switch to dark mode
16+
# Dark mode with high contrast
17+
- media: "(prefers-color-scheme: dark)"
18+
scheme: slate
19+
primary: custom
20+
accent: teal
21+
toggle:
22+
icon: material/brightness-4
23+
name: Switch to light mode
924
features:
1025
- navigation.tracking
26+
extra_css:
27+
- style.css
1128
extra:
1229
homepage: https://www.maxcommunications.co.uk
30+
plugins:
31+
- redirects:
32+
redirect_maps:
33+
'documentation.md': 'index.markdown'
1334
markdown_extensions:
1435
- toc:
1536
permalink: true

requirements.txt

Lines changed: 4 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,6 @@
1-
annotated-types==0.7.0
2-
anyio==4.6.2
3-
babel==2.17.0
4-
backrefs==5.9
5-
bagit==1.9.0
6-
boto3==1.35.34
7-
botocore==1.35.34
8-
cachetools==6.2.0
9-
certifi==2024.8.30
10-
charset-normalizer==3.3.2
11-
click==8.1.7
12-
colorama==0.4.6
13-
fastapi==0.115.0
14-
ghp-import==2.1.0
15-
greenlet==3.2.4
16-
h11==0.14.0
17-
httpcore==1.0.6
18-
httpx==0.27.2
19-
huey==2.5.3
20-
idna==3.10
21-
Jinja2==3.1.6
22-
jmespath==1.0.1
23-
Markdown==3.9
24-
MarkupSafe==3.0.2
25-
mergedeep==1.3.4
1+
# Core MkDocs dependencies
262
mkdocs==1.6.1
27-
mkdocs-get-deps==0.2.0
283
mkdocs-material==9.6.20
29-
mkdocs-material-extensions==1.3.1
30-
packaging==25.0
31-
paginate==0.5.7
32-
pathspec==0.12.1
33-
platformdirs==4.4.0
34-
pydantic==2.9.2
35-
pydantic_core==2.23.4
36-
Pygments==2.19.2
37-
pymdown-extensions==10.16.1
38-
python-dateutil==2.9.0.post0
39-
python-dotenv==1.0.1
40-
PyYAML==6.0.2
41-
pyyaml_env_tag==1.1
42-
requests==2.32.3
43-
s3transfer==0.10.2
44-
six==1.16.0
45-
sniffio==1.3.1
46-
SQLAlchemy==2.0.43
47-
starlette==0.38.6
48-
typing_extensions==4.12.2
49-
urllib3==2.2.3
50-
uvicorn==0.31.0
51-
watchdog==6.0.0
52-
wrapt==1.16.0
4+
5+
# MkDocs plugins
6+
mkdocs-redirects==1.2.2

0 commit comments

Comments
 (0)