Initial commit: Card Grader deployed to hippofam.com/cards

PWA card-grading app, deployed behind Nginx Proxy Manager on Unraid with
basic auth. Includes CARD_GRADER_BASE_PATH support for running under a
sub-path, and Docker/compose config for the Unraid deployment.
This commit is contained in:
Barely Removable 2026-08-22 09:22:41 -07:00
commit c7bd71a3e1
19 changed files with 3618 additions and 0 deletions

17
static/manifest.json Normal file
View file

@ -0,0 +1,17 @@
{
"name": "Card Grader",
"short_name": "Card Grader",
"description": "Estimate a trading card's PSA grade from photos.",
"start_url": "__BASE__/",
"scope": "__BASE__/",
"display": "standalone",
"orientation": "portrait",
"background_color": "#0a0f1c",
"theme_color": "#16224a",
"icons": [
{ "src": "__BASE__/static/icon-192.png", "sizes": "192x192", "type": "image/png", "purpose": "any" },
{ "src": "__BASE__/static/icon-512.png", "sizes": "512x512", "type": "image/png", "purpose": "any" },
{ "src": "__BASE__/static/icon-512-maskable.png", "sizes": "512x512", "type": "image/png", "purpose": "maskable" },
{ "src": "__BASE__/static/icon.svg", "sizes": "any", "type": "image/svg+xml", "purpose": "any" }
]
}