├── .env ├── .eslintrc.json ├── .gitignore ├── .husky └── pre-commit ├── README.md ├── app ├── api │ └── trpc │ │ └── [trpc] │ │ └── route.ts ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components └── Widgets │ └── Provider │ └── Provider.tsx ├── cz-config.js ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── prisma ├── dev.db ├── migrations │ ├── 20240417172117_init │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public ├── next.svg └── vercel.svg ├── server ├── client.ts ├── index.ts ├── routers │ └── users.ts └── trpc.ts ├── tailwind.config.ts └── tsconfig.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/README.md -------------------------------------------------------------------------------- /app/api/trpc/[trpc]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/app/api/trpc/[trpc]/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components/Widgets/Provider/Provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/components/Widgets/Provider/Provider.tsx -------------------------------------------------------------------------------- /cz-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/cz-config.js -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/dev.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/prisma/dev.db -------------------------------------------------------------------------------- /prisma/migrations/20240417172117_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/prisma/migrations/20240417172117_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /server/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/server/client.ts -------------------------------------------------------------------------------- /server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/server/index.ts -------------------------------------------------------------------------------- /server/routers/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/server/routers/users.ts -------------------------------------------------------------------------------- /server/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/server/trpc.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOrcDev/orcish-nextjs-fullstack-template/HEAD/tsconfig.json --------------------------------------------------------------------------------