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.
17 lines
748 B
JSON
17 lines
748 B
JSON
{
|
|
"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" }
|
|
]
|
|
}
|