Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
more formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
OG-NI committed Apr 30, 2024
1 parent 5296b78 commit 0243a50
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
20 changes: 10 additions & 10 deletions .github/DISCUSSION_TEMPLATE/statusberichte.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
title: "Week [Woche] ([Jahr] KW [Kalenderwoche], [Startdatum]-[Enddatum])"
title: 'Week [Woche] ([Jahr] KW [Kalenderwoche], [Startdatum]-[Enddatum])'
body:
- type: dropdown
attributes:
label: "Aktueller Status: "
label: 'Aktueller Status: '
options:
- 🟥
- 🟨
Expand All @@ -12,25 +12,25 @@ body:
required: true
- type: textarea
attributes:
label: "✅ Was ist diese Woche passiert?"
label: '✅ Was ist diese Woche passiert?'
placeholder: |
-
-
-
- type: textarea
attributes:
label: "👣 Was sind die nächsten Schritte?"
label: '👣 Was sind die nächsten Schritte?'
placeholder: |
-
-
-
- type: textarea
attributes:
label: "🤺 Was waren/sind eventuelle Hindernisse?"
label: '🤺 Was waren/sind eventuelle Hindernisse?'
placeholder: |
-
-
-
- type: textarea
attributes:
label: "💡 Was waren die Erkenntnisse dieser Woche?"
label: '💡 Was waren die Erkenntnisse dieser Woche?'
placeholder: |
-
-
-
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<p align="center">
<img width="523" src="https://github.com/Jstn2004/Login/assets/135236159/0e961393-d04d-4a7b-97ed-37e91c011778">
</p>
“DuoGradus” ist eine innovative Anwendung, die dir hilft, deine Fitness-Ziele zu erreichen. Dazu bieten wir dir ein innovatives Konzept, welches auf Gamification und Regelmäßigkeit setzt, sodass du dein Ziel auch langfristig erreichen kannst.
“DuoGradus” ist eine innovative Anwendung, die dir hilft, deine Fitness-Ziele zu erreichen. Dazu bieten wir dir ein innovatives Konzept, welches auf Gamification und Regelmäßigkeit setzt, sodass du dein Ziel auch langfristig erreichen kannst.

Mithilfe von vielen spannenden Challenges ermutigen wir dich Schritte zu sammeln, Fahrrad zu fahren oder im Fitness-Studio zu trainieren. Manchmal geben wir dir auch zusätzliche Herausforderungen (z.B. Schritte im Regen), die dann mit Abzeichen und anderen Erfolgen belohnt werden.

Expand Down
7 changes: 4 additions & 3 deletions backend/prisma/migrations/20240402121953_init/migration.sql
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
-- CreateTable
CREATE TABLE "User" (
CREATE TABLE
"User" (
"id" TEXT NOT NULL PRIMARY KEY,
"displayName" TEXT NOT NULL,
"email" TEXT NOT NULL,
"password" TEXT NOT NULL,
"enabled" BOOLEAN NOT NULL DEFAULT true,
"verified" BOOLEAN NOT NULL DEFAULT false
);
);

-- CreateIndex
CREATE UNIQUE INDEX "User_email_key" ON "User"("email");
CREATE UNIQUE INDEX "User_email_key" ON "User" ("email");

0 comments on commit 0243a50

Please sign in to comment.