├── .eslintrc.json ├── .gitignore ├── README.md ├── actions ├── print.ts └── screenshot.ts ├── app ├── api │ └── webhooks │ │ └── sentry │ │ └── route.ts ├── chat │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── page.tsx └── sentry │ ├── [id] │ └── page.tsx │ └── page.tsx ├── components ├── Chat.tsx ├── ChatForm.tsx ├── PhotoBooth.tsx ├── SentryIssue.tsx └── Test.tsx ├── lib ├── chat.ts ├── pipeline.ts ├── printer.ts ├── sentry.ts └── sfw.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public └── sentry.svg ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/README.md -------------------------------------------------------------------------------- /actions/print.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/actions/print.ts -------------------------------------------------------------------------------- /actions/screenshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/actions/screenshot.ts -------------------------------------------------------------------------------- /app/api/webhooks/sentry/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/app/api/webhooks/sentry/route.ts -------------------------------------------------------------------------------- /app/chat/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/app/chat/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/sentry/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/app/sentry/[id]/page.tsx -------------------------------------------------------------------------------- /app/sentry/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/app/sentry/page.tsx -------------------------------------------------------------------------------- /components/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/components/Chat.tsx -------------------------------------------------------------------------------- /components/ChatForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/components/ChatForm.tsx -------------------------------------------------------------------------------- /components/PhotoBooth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/components/PhotoBooth.tsx -------------------------------------------------------------------------------- /components/SentryIssue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/components/SentryIssue.tsx -------------------------------------------------------------------------------- /components/Test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/components/Test.tsx -------------------------------------------------------------------------------- /lib/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/lib/chat.ts -------------------------------------------------------------------------------- /lib/pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/lib/pipeline.ts -------------------------------------------------------------------------------- /lib/printer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/lib/printer.ts -------------------------------------------------------------------------------- /lib/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/lib/sentry.ts -------------------------------------------------------------------------------- /lib/sfw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/lib/sfw.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/sentry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/public/sentry.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/thermal-printer/HEAD/tsconfig.json --------------------------------------------------------------------------------