├── .env.example ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── prettier.config.cjs ├── prisma └── schema.prisma ├── public └── favicon.ico ├── src ├── components │ ├── analytics.tsx │ ├── difficultyFilter.tsx │ ├── layout.tsx │ ├── navbar.tsx │ ├── problemBox.tsx │ ├── problemCounts.tsx │ ├── problemGrid.tsx │ ├── problemViewBox.tsx │ ├── progressBar.tsx │ ├── tagsBox.tsx │ └── topicFilter.tsx ├── data │ ├── filter_tags.json │ └── problem_data.json ├── env │ ├── client.mjs │ ├── schema.mjs │ └── server.mjs ├── pages │ ├── _app.tsx │ ├── api │ │ ├── auth │ │ │ └── [...nextauth].ts │ │ ├── examples.ts │ │ ├── restricted.ts │ │ └── trpc │ │ │ └── [trpc].ts │ ├── index.tsx │ └── view │ │ └── [userId].tsx ├── server │ ├── common │ │ └── get-server-auth-session.ts │ ├── db │ │ └── client.ts │ └── trpc │ │ ├── context.ts │ │ ├── router │ │ ├── _app.ts │ │ ├── attempt.ts │ │ ├── auth.ts │ │ ├── example.ts │ │ └── view.ts │ │ └── trpc.ts ├── styles │ └── globals.css ├── types │ ├── next-auth.d.ts │ └── problem-data.ts └── utils │ ├── store.ts │ └── trpc.ts ├── tailwind.config.cjs └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/README.md -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/components/analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/components/analytics.tsx -------------------------------------------------------------------------------- /src/components/difficultyFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/components/difficultyFilter.tsx -------------------------------------------------------------------------------- /src/components/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/components/layout.tsx -------------------------------------------------------------------------------- /src/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/components/navbar.tsx -------------------------------------------------------------------------------- /src/components/problemBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/components/problemBox.tsx -------------------------------------------------------------------------------- /src/components/problemCounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/components/problemCounts.tsx -------------------------------------------------------------------------------- /src/components/problemGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/components/problemGrid.tsx -------------------------------------------------------------------------------- /src/components/problemViewBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/components/problemViewBox.tsx -------------------------------------------------------------------------------- /src/components/progressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/components/progressBar.tsx -------------------------------------------------------------------------------- /src/components/tagsBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/components/tagsBox.tsx -------------------------------------------------------------------------------- /src/components/topicFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/components/topicFilter.tsx -------------------------------------------------------------------------------- /src/data/filter_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/data/filter_tags.json -------------------------------------------------------------------------------- /src/data/problem_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/data/problem_data.json -------------------------------------------------------------------------------- /src/env/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/env/client.mjs -------------------------------------------------------------------------------- /src/env/schema.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/env/schema.mjs -------------------------------------------------------------------------------- /src/env/server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/env/server.mjs -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /src/pages/api/examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/pages/api/examples.ts -------------------------------------------------------------------------------- /src/pages/api/restricted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/pages/api/restricted.ts -------------------------------------------------------------------------------- /src/pages/api/trpc/[trpc].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/pages/api/trpc/[trpc].ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/view/[userId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/pages/view/[userId].tsx -------------------------------------------------------------------------------- /src/server/common/get-server-auth-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/server/common/get-server-auth-session.ts -------------------------------------------------------------------------------- /src/server/db/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/server/db/client.ts -------------------------------------------------------------------------------- /src/server/trpc/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/server/trpc/context.ts -------------------------------------------------------------------------------- /src/server/trpc/router/_app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/server/trpc/router/_app.ts -------------------------------------------------------------------------------- /src/server/trpc/router/attempt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/server/trpc/router/attempt.ts -------------------------------------------------------------------------------- /src/server/trpc/router/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/server/trpc/router/auth.ts -------------------------------------------------------------------------------- /src/server/trpc/router/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/server/trpc/router/example.ts -------------------------------------------------------------------------------- /src/server/trpc/router/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/server/trpc/router/view.ts -------------------------------------------------------------------------------- /src/server/trpc/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/server/trpc/trpc.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/types/next-auth.d.ts -------------------------------------------------------------------------------- /src/types/problem-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/types/problem-data.ts -------------------------------------------------------------------------------- /src/utils/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/utils/store.ts -------------------------------------------------------------------------------- /src/utils/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/src/utils/trpc.ts -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labs-asterisk/interview-checklist/HEAD/tsconfig.json --------------------------------------------------------------------------------