├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── app ├── db.server.ts ├── entry.client.tsx ├── entry.server.tsx ├── root.tsx └── routes │ ├── index.tsx │ └── users │ └── $id.tsx ├── package.json ├── prisma └── schema.prisma ├── process-env-shim.js ├── public └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── scripts └── build.js ├── server.ts ├── tsconfig.json └── wrangler.toml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | .mf 4 | .cache 5 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/README.md -------------------------------------------------------------------------------- /app/db.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/app/db.server.ts -------------------------------------------------------------------------------- /app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/app/entry.client.tsx -------------------------------------------------------------------------------- /app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/app/entry.server.tsx -------------------------------------------------------------------------------- /app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/app/root.tsx -------------------------------------------------------------------------------- /app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/app/routes/index.tsx -------------------------------------------------------------------------------- /app/routes/users/$id.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/app/routes/users/$id.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/package.json -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /process-env-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/process-env-shim.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/remix.config.js -------------------------------------------------------------------------------- /remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/remix.env.d.ts -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/scripts/build.js -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/server.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcomafessolli/remix-prisma-cloudflare-workers/HEAD/wrangler.toml --------------------------------------------------------------------------------