From 22602cbfb07a0e5058ebf9d26e96a3dc846fff74 Mon Sep 17 00:00:00 2001 From: Sine Jespersen Date: Fri, 1 Aug 2025 12:30:12 +0200 Subject: [PATCH 1/3] 4565: add development documentation --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 2bc0eb622..8f64b46b7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,22 @@ # OS2Display +## Development + +```bash +docker compose pull +docker compose up --detach +docker compose exec phpfpm composer install +docker compose run --rm node npm install + +# Run migrations +docker compose exec phpfpm bin/console doctrine:migrations:migrate + +# Load fixtures (Optional) +docker compose exec phpfpm bin/console hautelook:fixtures:load --no-interaction +``` + +The fixtures have an admin user: with the password: apassword The fixtures have an editor user: with the password: apassword The fixtures have the image-text template, and two screen layouts: full screen and "two boxes". + ## Description TODO From 96ac858121943261fb29644c1452f66825c5e3c3 Mon Sep 17 00:00:00 2001 From: Sine Jespersen Date: Fri, 1 Aug 2025 12:43:23 +0200 Subject: [PATCH 2/3] Update README.md White space stuff Co-authored-by: Troels Ugilt Jensen <6103205+tuj@users.noreply.github.com> --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f64b46b7..7981b1455 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,11 @@ docker compose exec phpfpm bin/console doctrine:migrations:migrate docker compose exec phpfpm bin/console hautelook:fixtures:load --no-interaction ``` -The fixtures have an admin user: with the password: apassword The fixtures have an editor user: with the password: apassword The fixtures have the image-text template, and two screen layouts: full screen and "two boxes". +The fixtures have an admin user: admin@example.com with the password: "apassword". + +The fixtures have an editor user: editor@example.com with the password: "apassword". + +The fixtures have the image-text template, and two screen layouts: full screen and "two boxes". ## Description From 393dbbcfe1b3949304651f4b73b1576e59fd44d7 Mon Sep 17 00:00:00 2001 From: Sine Jespersen Date: Fri, 1 Aug 2025 13:18:14 +0200 Subject: [PATCH 3/3] 4565: markdownlint --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7981b1455..59b17024e 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,9 @@ docker compose exec phpfpm bin/console doctrine:migrations:migrate docker compose exec phpfpm bin/console hautelook:fixtures:load --no-interaction ``` -The fixtures have an admin user: admin@example.com with the password: "apassword". +The fixtures have an admin user: with the password: "apassword". -The fixtures have an editor user: editor@example.com with the password: "apassword". +The fixtures have an editor user: with the password: "apassword". The fixtures have the image-text template, and two screen layouts: full screen and "two boxes".