Skip to content

Commit

Permalink
Rename into Kommunikationsplattform
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelpuchta committed Nov 1, 2024
1 parent c1ce3ef commit 679831f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# A2J - Verfahrensplattform
# A2J - Kommunikationsplattform

## Prerequisites

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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).

Expand Down
6 changes: 3 additions & 3 deletions app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<main className={"flex flex-col items-center m-40"}>
<h1 className={"ds-heading-01-reg mb-40"}>Hello Verfahrensplattform!</h1>
<h1 className={"ds-heading-01-reg mb-40"}>Hello Kommunikationsplattform!</h1>
</main>
);
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "a2j-verfahrensplattform",
"name": "a2j-kommunikationsplattform",
"private": true,
"sideEffects": false,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion public/.well-known/security.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Contact: mailto:[email protected]
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
4 changes: 2 additions & 2 deletions tests/e2e/example.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});
});

0 comments on commit 679831f

Please sign in to comment.