From 6ae63d122794ee5fb36e117c7b4d4132a764efdb Mon Sep 17 00:00:00 2001 From: Johannes Nussbaum <39048939+jnussbaum@users.noreply.github.com> Date: Mon, 11 Nov 2024 17:03:48 +0100 Subject: [PATCH] docs(start-stack): describe how to login in locally running DSP-APP (RDU-54) (#1266) --- .markdownlint.yml | 3 +++ docs/cli-commands.md | 4 ++++ docs/start-stack.md | 4 ++++ mkdocs.yml | 5 +++++ 4 files changed, 16 insertions(+) diff --git a/.markdownlint.yml b/.markdownlint.yml index faf6a946f6..86766a1642 100644 --- a/.markdownlint.yml +++ b/.markdownlint.yml @@ -40,3 +40,6 @@ MD041: false # MD045/no-alt-text - Images should have alternate text (alt text) MD045: false + +# MD046/code-block-style - Code blocks should be fenced instead of indented (incompatible with admonitions) +MD046: false diff --git a/docs/cli-commands.md b/docs/cli-commands.md index 8c696d6803..1e67001d0a 100644 --- a/docs/cli-commands.md +++ b/docs/cli-commands.md @@ -553,6 +553,10 @@ the upload will be rejected. More help for this command can be found [here](./start-stack.md). +!!! note "Login credentials for DSP-APP" + + To gain system administration rights inside a locally running DSP-APP, + login with username `root@example.com` and password `test`. ## `stop-stack` diff --git a/docs/start-stack.md b/docs/start-stack.md index a6c5c204aa..0b1f1521f1 100644 --- a/docs/start-stack.md +++ b/docs/start-stack.md @@ -23,6 +23,10 @@ Here's an overview of the two ways: | available versions | latest released version, or `main` branch | any branch, or locally modified working tree | | caveats | | dependencies must be kept up to date | +!!! note "Login credentials for DSP-APP" + + To gain system administration rights inside a locally running DSP-APP, + login with username `root@example.com` and password `test`. ## The Simple Way: `dsp-tools start-stack` diff --git a/mkdocs.yml b/mkdocs.yml index 9b64b6cbbf..9963330b35 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -86,3 +86,8 @@ plugins: show_signature: false show_docstring_raises: false show_root_toc_entry: false + +markdown_extensions: + - admonition + - pymdownx.details + - pymdownx.superfences