├── .env.example ├── .eslintrc.cjs ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── next.config.js ├── package.json ├── postcss.config.cjs ├── prettier.config.js ├── prisma ├── migrations │ ├── 20240211092205_add_type_and_releaselink │ │ └── migration.sql │ ├── 20240211095643_optional_link │ │ └── migration.sql │ ├── 20240818100533_introduce_runtimes │ │ └── migration.sql │ ├── 20240818125041_optional_date │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public └── favicon.svg ├── src ├── app │ ├── api │ │ └── trpc │ │ │ └── [trpc] │ │ │ └── route.ts │ ├── history │ │ ├── layout.tsx │ │ └── page.tsx │ ├── layout.tsx │ ├── page.tsx │ └── runtimes │ │ ├── layout.tsx │ │ └── page.tsx ├── components │ ├── Counter.tsx │ ├── Error.tsx │ ├── Footer.tsx │ ├── History.tsx │ ├── List.tsx │ ├── Loading.tsx │ ├── Navbar.tsx │ └── Runtimes.tsx ├── env.js ├── server │ ├── api │ │ ├── root.ts │ │ ├── routers │ │ │ └── frameworks.ts │ │ └── trpc.ts │ ├── db.ts │ ├── db │ │ ├── framework.ts │ │ └── runtime.ts │ ├── service │ │ ├── counter.ts │ │ ├── history.ts │ │ └── runtimes.ts │ └── types.ts ├── styles │ └── globals.css ├── trpc │ ├── query-client.ts │ ├── react.tsx │ └── server.ts └── util │ ├── date.ts │ └── string.ts ├── start-database.sh ├── static └── favicon.svg ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/prettier.config.js -------------------------------------------------------------------------------- /prisma/migrations/20240211092205_add_type_and_releaselink/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/prisma/migrations/20240211092205_add_type_and_releaselink/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240211095643_optional_link/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/prisma/migrations/20240211095643_optional_link/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240818100533_introduce_runtimes/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/prisma/migrations/20240818100533_introduce_runtimes/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240818125041_optional_date/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/prisma/migrations/20240818125041_optional_date/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /src/app/api/trpc/[trpc]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/app/api/trpc/[trpc]/route.ts -------------------------------------------------------------------------------- /src/app/history/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/app/history/layout.tsx -------------------------------------------------------------------------------- /src/app/history/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/app/history/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/runtimes/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/app/runtimes/layout.tsx -------------------------------------------------------------------------------- /src/app/runtimes/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/app/runtimes/page.tsx -------------------------------------------------------------------------------- /src/components/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/components/Counter.tsx -------------------------------------------------------------------------------- /src/components/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/components/Error.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/components/History.tsx -------------------------------------------------------------------------------- /src/components/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/components/List.tsx -------------------------------------------------------------------------------- /src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/components/Loading.tsx -------------------------------------------------------------------------------- /src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/components/Navbar.tsx -------------------------------------------------------------------------------- /src/components/Runtimes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/components/Runtimes.tsx -------------------------------------------------------------------------------- /src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/env.js -------------------------------------------------------------------------------- /src/server/api/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/server/api/root.ts -------------------------------------------------------------------------------- /src/server/api/routers/frameworks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/server/api/routers/frameworks.ts -------------------------------------------------------------------------------- /src/server/api/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/server/api/trpc.ts -------------------------------------------------------------------------------- /src/server/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/server/db.ts -------------------------------------------------------------------------------- /src/server/db/framework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/server/db/framework.ts -------------------------------------------------------------------------------- /src/server/db/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/server/db/runtime.ts -------------------------------------------------------------------------------- /src/server/service/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/server/service/counter.ts -------------------------------------------------------------------------------- /src/server/service/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/server/service/history.ts -------------------------------------------------------------------------------- /src/server/service/runtimes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/server/service/runtimes.ts -------------------------------------------------------------------------------- /src/server/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/server/types.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/trpc/query-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/trpc/query-client.ts -------------------------------------------------------------------------------- /src/trpc/react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/trpc/react.tsx -------------------------------------------------------------------------------- /src/trpc/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/trpc/server.ts -------------------------------------------------------------------------------- /src/util/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/util/date.ts -------------------------------------------------------------------------------- /src/util/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/src/util/string.ts -------------------------------------------------------------------------------- /start-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/start-database.sh -------------------------------------------------------------------------------- /static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/static/favicon.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvar/days-since-js-framework/HEAD/tsconfig.json --------------------------------------------------------------------------------