/root-repo
│
├── turbo.json
│
├── package/
│ └── db/
│ └── prisma/
│ ├── schema.prisma
│ ├── migrations/
│ └── seed.ts
│
├── apps/
│ ├── user-app/
│ │ ├── package.json
│ │ ├── next.config.js
│ │ ├── public/
│ │ ├── src/
│ │ └── (other Next.js specific files)
│ │
│ ├── webhook/
│ │ ├── package.json
│ │ ├── index.js (or index.ts)
│ │ └── (other Node.js specific files)
│ │
│ ├── cloudflare-pages/ [to add]
│ │ ├── package.json
│ │ ├── (other Cloudflare Pages specific files)
│ │
│ └── cloudflare-workers/ [to add]
│ ├── package.json
│ ├── index.js (or index.ts)
│ └── (other Cloudflare Workers specific files)
│
└── (other project files, e.g., README.md, .gitignore)
/root-repo
│
├── turbo.json
│
├── package/
│ └── db/
│ └── prisma/
│ ├── schema.prisma
│ ├── migrations/
│ └── seed.ts
│
├── apps/
│ ├── user-app/
│ │ ├── package.json
│ │ ├── next.config.js
│ │ ├── public/
│ │ ├── src/
│ │ └── (other Next.js specific files)
│ │
│ ├── webhook/
│ │ ├── package.json
│ │ ├── index.js (or index.ts)
│ │ └── (other Node.js specific files)
│ │
│ ├── cloudflare-pages/ [to add]
│ │ ├── package.json
│ │ ├── (other Cloudflare Pages specific files)
│ │
│ └── cloudflare-workers/ [to add]
│ ├── package.json
│ ├── index.js (or index.ts)
│ └── (other Cloudflare Workers specific files)
│
└── (other project files, e.g., README.md, .gitignore)