Bootstraps from Shopify's official shopify-app-template-remix (cloned directly rather than via `shopify app init`, which requires an interactive Partner login unavailable in this session): - Prisma (SQLite dev / Postgres-ready) with baseline Session model + migration - Vitest configured for unit tests, Playwright configured for E2E - Redis client + BullMQ worker skeleton (app/lib/redis.server.ts, jobs/worker.ts) - shopify.app.toml: minimal scopes, GDPR + orders webhooks wired (stub handlers), app proxy config for the future storefront widget - Stripped template-repo-only meta files (CLA, issue templates, demo product page) and replaced CI with a lint+typecheck+test workflow - Bumped @shopify/shopify-app-session-storage-prisma to resolve a duplicate @shopify/shopify-api install that broke typecheck - Dropped the Jest-only ESLint config (template default) since the project standardizes on Vitest per IMPLEMENTATION_PLAN.md Verified: npm install, lint, typecheck, unit tests, prisma migrate dev, and npm run build all pass on Node 22 LTS. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
74 lines
867 B
CSS
74 lines
867 B
CSS
.index {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
text-align: center;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.heading,
|
|
.text {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.text {
|
|
font-size: 1.2rem;
|
|
padding-bottom: 2rem;
|
|
}
|
|
|
|
.content {
|
|
display: grid;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.form {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
margin: 0 auto;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.label {
|
|
display: grid;
|
|
gap: 0.2rem;
|
|
max-width: 20rem;
|
|
text-align: left;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.input {
|
|
padding: 0.4rem;
|
|
}
|
|
|
|
.button {
|
|
padding: 0.4rem;
|
|
}
|
|
|
|
.list {
|
|
list-style: none;
|
|
padding: 0;
|
|
padding-top: 3rem;
|
|
margin: 0;
|
|
display: flex;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.list > li {
|
|
max-width: 20rem;
|
|
text-align: left;
|
|
}
|
|
|
|
@media only screen and (max-width: 50rem) {
|
|
.list {
|
|
display: block;
|
|
}
|
|
|
|
.list > li {
|
|
padding-bottom: 1rem;
|
|
}
|
|
}
|