2 Commits

Author SHA1 Message Date
728efeaa48 Ops: Bump manifests for v1.0.1 2026-05-08 14:49:40 -04:00
c858e47daa Feat: Add favicon and web manifest
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-08 18:43:45 +00:00
10 changed files with 9 additions and 5 deletions

View File

@@ -15,8 +15,7 @@ spec:
spec:
initContainers:
- name: migrate
imagePullPolicy: Always
image: git.juggalol.com/juggalol/reactbin-api:v1.0.0
image: git.juggalol.com/juggalol/reactbin-api:v1.0.1
command: ["alembic", "upgrade", "head"]
workingDir: /app
envFrom:
@@ -27,7 +26,7 @@ spec:
runAsUser: 1001
containers:
- name: api
image: git.juggalol.com/juggalol/reactbin-api:v1.0.0
image: git.juggalol.com/juggalol/reactbin-api:v1.0.1
ports:
- containerPort: 8000
envFrom:

View File

@@ -15,8 +15,7 @@ spec:
spec:
containers:
- name: ui
imagePullPolicy: Always
image: git.juggalol.com/juggalol/reactbin-ui:v1.0.0
image: git.juggalol.com/juggalol/reactbin-ui:v1.0.1
ports:
- containerPort: 8080
livenessProbe:

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
ui/public/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 726 B

BIN
ui/public/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
ui/public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}

View File

@@ -5,6 +5,11 @@
<title>Reactbin</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="icon" href="favicon.ico">
</head>
<body>
<app-root></app-root>