├── .eslintignore ├── .gitignore ├── .gitpod.yml ├── .prettierignore ├── .prettierrc ├── README.md ├── app ├── AlertBlue.tsx ├── AlertGreen.tsx ├── AlertRed.tsx ├── ImageInput.tsx ├── auth.server.ts ├── classNames.tsx ├── entry.client.tsx ├── entry.server.tsx ├── pbkdf2.server.ts ├── prisma.server.ts ├── root.tsx ├── routes │ ├── app.tsx │ ├── app │ │ ├── index.tsx │ │ └── settings.tsx │ ├── auth │ │ ├── logged-in.tsx │ │ ├── login.tsx │ │ ├── sign-out.tsx │ │ └── sign-up.tsx │ ├── index.tsx │ └── triage.tsx └── tsconfig.json ├── package.json ├── pm2.config.js ├── prisma └── schema.prisma ├── public └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── shared-tsconfig.json ├── src └── index.mjs ├── tailwind.config.js ├── tsconfig.json └── worker ├── adapter.ts └── index.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/.eslintignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/README.md -------------------------------------------------------------------------------- /app/AlertBlue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/AlertBlue.tsx -------------------------------------------------------------------------------- /app/AlertGreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/AlertGreen.tsx -------------------------------------------------------------------------------- /app/AlertRed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/AlertRed.tsx -------------------------------------------------------------------------------- /app/ImageInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/ImageInput.tsx -------------------------------------------------------------------------------- /app/auth.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/auth.server.ts -------------------------------------------------------------------------------- /app/classNames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/classNames.tsx -------------------------------------------------------------------------------- /app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/entry.client.tsx -------------------------------------------------------------------------------- /app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/entry.server.tsx -------------------------------------------------------------------------------- /app/pbkdf2.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/pbkdf2.server.ts -------------------------------------------------------------------------------- /app/prisma.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/prisma.server.ts -------------------------------------------------------------------------------- /app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/root.tsx -------------------------------------------------------------------------------- /app/routes/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/routes/app.tsx -------------------------------------------------------------------------------- /app/routes/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/routes/app/index.tsx -------------------------------------------------------------------------------- /app/routes/app/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/routes/app/settings.tsx -------------------------------------------------------------------------------- /app/routes/auth/logged-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/routes/auth/logged-in.tsx -------------------------------------------------------------------------------- /app/routes/auth/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/routes/auth/login.tsx -------------------------------------------------------------------------------- /app/routes/auth/sign-out.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/routes/auth/sign-out.tsx -------------------------------------------------------------------------------- /app/routes/auth/sign-up.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/routes/auth/sign-up.tsx -------------------------------------------------------------------------------- /app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/routes/index.tsx -------------------------------------------------------------------------------- /app/routes/triage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/routes/triage.tsx -------------------------------------------------------------------------------- /app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/app/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/package.json -------------------------------------------------------------------------------- /pm2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/pm2.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/remix.config.js -------------------------------------------------------------------------------- /remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/remix.env.d.ts -------------------------------------------------------------------------------- /shared-tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/shared-tsconfig.json -------------------------------------------------------------------------------- /src/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/src/index.mjs -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/tsconfig.json -------------------------------------------------------------------------------- /worker/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/worker/adapter.ts -------------------------------------------------------------------------------- /worker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobparis/remix-cloudflare-prisma/HEAD/worker/index.ts --------------------------------------------------------------------------------