From 679831f84b71a4383efd60ddd9e8b32f3daef951 Mon Sep 17 00:00:00 2001 From: Manuel Puchta Date: Fri, 1 Nov 2024 16:30:02 +0100 Subject: [PATCH] Rename into Kommunikationsplattform --- README.md | 10 +++++----- app/routes/_index.tsx | 6 +++--- package-lock.json | 4 ++-- package.json | 2 +- public/.well-known/security.txt | 2 +- tests/e2e/example.spec.ts | 4 ++-- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 3ec7ef5..9f88309 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# A2J - Verfahrensplattform +# A2J - Kommunikationsplattform ## Prerequisites @@ -85,13 +85,13 @@ The project includes a Dockerfile to create a Docker Image for the project. You can build the Docker Image using ```sh -docker build -t a2j-verfahrensplattform . +docker build -t a2j-kommunikationsplattform . ``` and then start it using ```sh -docker run -d -p 3000:3000 --name a2j-verfahrensplattform a2j-verfahrensplattform +docker run -d -p 3000:3000 --name a2j-kommunikationsplattform a2j-kommunikationsplattform ``` The website is then available under http://localhost:3000 @@ -121,12 +121,12 @@ brew install adr-tools ## Contributing 🇬🇧 -Everyone is welcome to contribute the development of the _a2j-verfahrensplattform_. You can contribute by opening pull request, +Everyone is welcome to contribute the development of the _a2j-kommunikationsplattform_. You can contribute by opening pull request, providing documentation or answering questions or giving feedback. Please always follow the guidelines and our [Code of Conduct](CODE_OF_CONDUCT.md). 🇩🇪 -Jede:r ist herzlich eingeladen, die Entwicklung der _a2j-verfahrensplattform_ mitzugestalten. Du kannst einen Beitrag leisten, +Jede:r ist herzlich eingeladen, die Entwicklung der _a2j-kommunikationsplattform_ mitzugestalten. Du kannst einen Beitrag leisten, indem du Pull-Requests eröffnest, die Dokumentation erweiterst, Fragen beantwortest oder Feedback gibst. Bitte befolge immer die Richtlinien und unseren [Verhaltenskodex](CODE_OF_CONDUCT_DE.md). diff --git a/app/routes/_index.tsx b/app/routes/_index.tsx index 07d05f3..d3dc898 100644 --- a/app/routes/_index.tsx +++ b/app/routes/_index.tsx @@ -2,15 +2,15 @@ import type { MetaFunction } from "@remix-run/node"; export const meta: MetaFunction = () => { return [ - { title: "Verfahrensplattform" }, - { name: "description", content: "Hello Verfahrensplattform!" }, + { title: "Kommunikationsplattform" }, + { name: "description", content: "Hello Kommunikationsplattform!" }, ]; }; export default function Index() { return (
-

Hello Verfahrensplattform!

+

Hello Kommunikationsplattform!

); } diff --git a/package-lock.json b/package-lock.json index aa44a0f..88a3056 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,10 +1,10 @@ { - "name": "a2j-verfahrensplattform", + "name": "a2j-kommunikationsplattform", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "a2j-verfahrensplattform", + "name": "a2j-kommunikationsplattform", "dependencies": { "@digitalservice4germany/angie": "^1.2.0", "@digitalservice4germany/style-dictionary": "^2.0.0", diff --git a/package.json b/package.json index ecb2f9f..6d5a9d9 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "a2j-verfahrensplattform", + "name": "a2j-kommunikationsplattform", "private": true, "sideEffects": false, "type": "module", diff --git a/public/.well-known/security.txt b/public/.well-known/security.txt index f76ef63..f8a60fb 100644 --- a/public/.well-known/security.txt +++ b/public/.well-known/security.txt @@ -1,6 +1,6 @@ Contact: mailto:security@digitalservice.bund.de Expires: 2024-12-31T23:59:59.000Z Preferred-Languages: en, de -Policy: https://raw.githubusercontent.com/digitalservicebund/a2j-verfahrensplattform/main/SECURITY.md +Policy: https://raw.githubusercontent.com/digitalservicebund/a2j-kommunikationsplattform/main/SECURITY.md Hiring: https://digitalservice.bund.de/en/career Encryption: https://raw.githubusercontent.com/digitalservicebund/public-keys/main/pgp-public-key-security-mail.pem diff --git a/tests/e2e/example.spec.ts b/tests/e2e/example.spec.ts index 37ed15e..8eb3a0d 100644 --- a/tests/e2e/example.spec.ts +++ b/tests/e2e/example.spec.ts @@ -3,11 +3,11 @@ import { test, expect } from "@playwright/test"; test.describe("basic example test", () => { test("has title", async ({ page }) => { await page.goto("/"); - await expect(page).toHaveTitle("Verfahrensplattform"); + await expect(page).toHaveTitle("Kommunikationsplattform"); }); test("shows hello message", async ({ page }) => { await page.goto("/"); - await expect(page.locator("text=Hello Verfahrensplattform!")).toBeVisible(); + await expect(page.locator("text=Hello Kommunikationsplattform!")).toBeVisible(); }); });