Skip to content

Commit 1943d2c

Browse files
committed
feat: add guest login credentials and update README.md instructions
1 parent 0b01500 commit 1943d2c

File tree

3 files changed

+24
-1023
lines changed

3 files changed

+24
-1023
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,10 @@ $ cp ./apps/client/.env.example ./apps/client/.env
117117

118118
run the backend (microservices)
119119

120+
- add `/tmp` to docker desktop file sharing
121+
120122
```bash
123+
$ docker plugin install grafana/loki-docker-driver:3.3.2-arm64 --alias loki --grant-all-permissions
121124
$ docker compose up
122125
```
123126

apps/client/src/pages/Login.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function Login() {
5858
}
5959

6060
return (
61-
<div className="min-h-screen w-full flex justify-center items-center">
61+
<div className="min-h-screen w-full flex flex-col justify-center items-center">
6262
<Card className="w-full sm:max-w-md">
6363
<CardHeader>
6464
<CardTitle className="text-center text-4xl">Login</CardTitle>
@@ -113,6 +113,12 @@ function Login() {
113113
</Button>
114114
</CardFooter>
115115
</Card>
116+
117+
<div className="mt-5">
118+
<h3 className="mb-2 text-2xl font-semibold">Guest Login</h3>
119+
<p>Email: [email protected]</p>
120+
<p>Password: test123</p>
121+
</div>
116122
</div>
117123
);
118124
}

0 commit comments

Comments
 (0)