Commits vergleichen
3 Commits
e06024e67a
...
488161794e
Autor | SHA1 | Datum | |
---|---|---|---|
488161794e | |||
f38ff3817d | |||
fbc72b1ee4 |
5 geänderte Dateien mit 21 neuen und 6 gelöschten Zeilen
|
@ -28,7 +28,7 @@ steps:
|
||||||
- cd ~/docs
|
- cd ~/docs
|
||||||
- pip install --upgrade pip
|
- pip install --upgrade pip
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
- make html
|
- make dirhtml
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
event:
|
event:
|
||||||
|
@ -69,7 +69,7 @@ steps:
|
||||||
- cd ~/docs
|
- cd ~/docs
|
||||||
- pip install --upgrade pip
|
- pip install --upgrade pip
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
- make html
|
- make dirhtml
|
||||||
- name: deploy to staging
|
- name: deploy to staging
|
||||||
image: appleboy/drone-scp
|
image: appleboy/drone-scp
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -127,7 +127,7 @@ steps:
|
||||||
- cd ~/docs
|
- cd ~/docs
|
||||||
- pip install --upgrade pip
|
- pip install --upgrade pip
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
- make html
|
- make dirhtml
|
||||||
- name: deploy to production
|
- name: deploy to production
|
||||||
image: appleboy/drone-scp
|
image: appleboy/drone-scp
|
||||||
volumes:
|
volumes:
|
||||||
|
|
1
.gitignore
gevendort
1
.gitignore
gevendort
|
@ -1,3 +1,4 @@
|
||||||
build/html/
|
build/html/
|
||||||
|
build/dirhtml/
|
||||||
.venv/
|
.venv/
|
||||||
.vscode/
|
.vscode/
|
|
@ -1,2 +1,3 @@
|
||||||
furo==2023.5.20
|
furo==2023.5.20
|
||||||
sphinx-intl==2.1.0
|
sphinx-intl==2.1.0
|
||||||
|
sphinx-notfound-page==0.8.3
|
8
source/404.rst
Normale Datei
8
source/404.rst
Normale Datei
|
@ -0,0 +1,8 @@
|
||||||
|
:orphan:
|
||||||
|
|
||||||
|
Seite nicht gefunden
|
||||||
|
====================
|
||||||
|
|
||||||
|
Die angeforderte Seite konnte nicht gefunden werden. Sie können unsere Suche in der Navigation verwenden, um Inhalte zu finden.
|
||||||
|
|
||||||
|
Falls Sie Verbesserungsvorschläge einreichen wollen, erstellen Sie bitte einen `Beitrag in der Forge <https://forge.nick-slowinski.de/nick-slowinski.de/docs/issues/>`_ oder tragen Sie direkt bei.
|
|
@ -13,7 +13,9 @@ author = 'Nick Slowinski'
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||||||
|
|
||||||
extensions = []
|
extensions = [
|
||||||
|
'notfound.extension',
|
||||||
|
]
|
||||||
|
|
||||||
templates_path = ['_templates']
|
templates_path = ['_templates']
|
||||||
exclude_patterns = []
|
exclude_patterns = []
|
||||||
|
@ -33,4 +35,7 @@ gettext_compact = False # optional.
|
||||||
html_theme_options = {
|
html_theme_options = {
|
||||||
"announcement": "<em>Diese Dokumentation befindet sich noch im Aufbau und wird nach für nach vervollständigt.</em>",
|
"announcement": "<em>Diese Dokumentation befindet sich noch im Aufbau und wird nach für nach vervollständigt.</em>",
|
||||||
"source_edit_link": "https://forge.nick-slowinski.de/nick-slowinski.de/docs/_edit/main/source/{filename}",
|
"source_edit_link": "https://forge.nick-slowinski.de/nick-slowinski.de/docs/_edit/main/source/{filename}",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# 404 extension
|
||||||
|
notfound_urls_prefix = None
|
||||||
|
|
Laden …
In neuem Issue referenzieren