├── .commitlintrc.js ├── .editorconfig ├── .env ├── .env.example ├── .eslintrc-auto-import.json ├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ └── node.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierignore ├── .prettierrc.js ├── .stylelintrc.js ├── .vscode ├── i18n-ally-custom-framework.yml ├── settings.json └── unocss.json ├── README.md ├── actions ├── auth.ts ├── paste.ts └── user.ts ├── app ├── [locale] │ ├── (app) │ │ ├── _components │ │ │ ├── home │ │ │ │ ├── Announcement.tsx │ │ │ │ └── form.tsx │ │ │ └── layout │ │ │ │ ├── Header.module.scss │ │ │ │ ├── Header.tsx │ │ │ │ └── header │ │ │ │ └── Navigation.tsx │ │ ├── about │ │ │ └── page.tsx │ │ ├── dashboard │ │ │ ├── _components │ │ │ │ ├── aside-nav.tsx │ │ │ │ ├── header.tsx │ │ │ │ ├── shell.tsx │ │ │ │ └── skeleton.tsx │ │ │ ├── layout.tsx │ │ │ ├── notifications │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ ├── settings │ │ │ │ ├── @profile │ │ │ │ │ ├── loading.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── _components │ │ │ │ │ ├── app-settings.tsx │ │ │ │ │ ├── button.tsx │ │ │ │ │ ├── form.tsx │ │ │ │ │ ├── modal.tsx │ │ │ │ │ └── profiles.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ │ └── snippets │ │ │ │ ├── _components │ │ │ │ ├── button.tsx │ │ │ │ ├── modal.tsx │ │ │ │ ├── snippet.module.scss │ │ │ │ └── snippet.tsx │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── v │ │ │ └── [cuid] │ │ │ ├── _components │ │ │ ├── CodePreview.module.scss │ │ │ ├── CodePreview.tsx │ │ │ ├── CodePreviewIntlProvider.tsx │ │ │ └── shiki │ │ │ │ ├── Header.tsx │ │ │ │ ├── LineNumbers.tsx │ │ │ │ └── shiki.scss │ │ │ ├── page.tsx │ │ │ └── raw │ │ │ └── route.ts │ ├── (auth) │ │ ├── _components │ │ │ └── layouts │ │ │ │ ├── content.tsx │ │ │ │ ├── go-back-button.tsx │ │ │ │ └── logo.tsx │ │ ├── auth │ │ │ ├── error │ │ │ │ ├── _components │ │ │ │ │ └── preview.tsx │ │ │ │ └── page.tsx │ │ │ ├── password │ │ │ │ └── reset │ │ │ │ │ ├── [token] │ │ │ │ │ ├── _components │ │ │ │ │ │ └── form.tsx │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── _components │ │ │ │ │ └── form.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── signin │ │ │ │ ├── _components │ │ │ │ │ ├── Credentials.tsx │ │ │ │ │ └── OAuthProvider.tsx │ │ │ │ └── page.tsx │ │ │ └── signup │ │ │ │ ├── _components │ │ │ │ └── form.tsx │ │ │ │ └── page.tsx │ │ ├── layout.module.scss │ │ └── layout.tsx │ └── layout.tsx ├── api │ ├── auth │ │ ├── [...nextauth] │ │ │ └── route.ts │ │ └── signup │ │ │ └── _route.ts │ ├── task │ │ └── route.ts │ └── user │ │ └── authenticators │ │ └── route.ts ├── error.tsx ├── favicon.ico ├── layout.tsx └── not-found.tsx ├── auto-imports.d.ts ├── components ├── animated-logo.tsx ├── confirmation.tsx ├── form.tsx ├── navigation-link.tsx ├── provider.tsx ├── server-provider.tsx ├── status.tsx ├── ui │ ├── accordion.tsx │ ├── action-bar.tsx │ ├── alert.tsx │ ├── avatar.tsx │ ├── blockquote.tsx │ ├── breadcrumb.tsx │ ├── button.tsx │ ├── checkbox-card.tsx │ ├── checkbox.tsx │ ├── clipboard.tsx │ ├── close-button.tsx │ ├── color-mode.tsx │ ├── color-picker.tsx │ ├── data-list.tsx │ ├── dialog.tsx │ ├── drawer.tsx │ ├── empty-state.tsx │ ├── field.tsx │ ├── file-upload.tsx │ ├── hover-card.tsx │ ├── input-group.tsx │ ├── link-button.tsx │ ├── menu.tsx │ ├── native-select.tsx │ ├── number-input.tsx │ ├── pagination.tsx │ ├── password-input.tsx │ ├── pin-input.tsx │ ├── popover.tsx │ ├── progress-circle.tsx │ ├── progress.tsx │ ├── prose.tsx │ ├── provider.tsx │ ├── radio-card.tsx │ ├── radio.tsx │ ├── rating.tsx │ ├── segmented-control.tsx │ ├── select.tsx │ ├── skeleton.tsx │ ├── slider.tsx │ ├── stat.tsx │ ├── status.tsx │ ├── stepper-input.tsx │ ├── steps.tsx │ ├── switch.tsx │ ├── tag.tsx │ ├── timeline.tsx │ ├── toaster.tsx │ ├── toggle-tip.tsx │ ├── toggle.tsx │ └── tooltip.tsx └── uno-css-indicator.tsx ├── config ├── app.tsx └── dashboard.tsx ├── enums ├── app.ts ├── paste.ts ├── response.ts └── user.ts ├── env.mjs ├── hooks ├── actions.ts ├── requests │ └── user.ts └── toast.ts ├── libs ├── auth │ ├── config │ │ ├── edge.ts │ │ └── index.ts │ ├── index.ts │ ├── providers.tsx │ └── webauthn.ts ├── framer │ └── shaking.ts ├── i18n.tsx ├── navigation.ts ├── prisma │ └── client.ts ├── requests.ts ├── services │ └── users │ │ └── user.ts ├── shiki │ ├── extends.ts │ └── index.ts └── validation │ ├── auth.ts │ ├── paste.ts │ └── user.ts ├── lint-staged.config.js ├── messages ├── en.yml └── zh-CN.yml ├── middleware.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prisma ├── README.md └── postgresql │ ├── migrations │ ├── 20231019164642_init │ │ └── migration.sql │ ├── 20231021115443_add_paste_field_type │ │ └── migration.sql │ ├── 20231021123408_add_fields │ │ └── migration.sql │ ├── 20231024065713_add_web_authn_fields │ │ └── migration.sql │ ├── 20231026031107_add_authenticator_field_name │ │ └── migration.sql │ ├── 20231026133156_recreate_next_auth_tables │ │ └── migration.sql │ └── migration_lock.toml │ └── schema.prisma ├── public ├── next.svg └── vercel.svg ├── renovate.json ├── scripts ├── prisma │ ├── db.ts │ ├── generate.ts │ └── migrate.ts └── tools │ └── gen-oauth.ts ├── styles └── global.scss ├── tailwind.config.ts ├── tsconfig.json ├── types └── index.d.ts ├── uno.config.ts ├── utils ├── actions.ts ├── app.ts ├── cookies.ts ├── formatter.ts ├── fs.ts ├── helper.ts ├── middlewares.ts ├── response.ts ├── strings.ts ├── types.ts └── user.ts ├── vercel.json └── vite.config.ts /.commitlintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/.commitlintrc.js -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc-auto-import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/.eslintrc-auto-import.json -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | pnpm lint-staged 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .next/ 2 | auto-imports.d.ts 3 | pnpm-lock.yaml 4 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /.vscode/i18n-ally-custom-framework.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/.vscode/i18n-ally-custom-framework.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/unocss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/.vscode/unocss.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/README.md -------------------------------------------------------------------------------- /actions/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/actions/auth.ts -------------------------------------------------------------------------------- /actions/paste.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/actions/paste.ts -------------------------------------------------------------------------------- /actions/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/actions/user.ts -------------------------------------------------------------------------------- /app/[locale]/(app)/_components/home/Announcement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/_components/home/Announcement.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/_components/home/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/_components/home/form.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/_components/layout/Header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/_components/layout/Header.module.scss -------------------------------------------------------------------------------- /app/[locale]/(app)/_components/layout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/_components/layout/Header.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/_components/layout/header/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/_components/layout/header/Navigation.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/about/page.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/_components/aside-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/_components/aside-nav.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/_components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/_components/header.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/_components/shell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/_components/shell.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/_components/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/_components/skeleton.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/layout.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/notifications/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/notifications/page.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/page.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/settings/@profile/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/settings/@profile/loading.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/settings/@profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/settings/@profile/page.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/settings/_components/app-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/settings/_components/app-settings.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/settings/_components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/settings/_components/button.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/settings/_components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/settings/_components/form.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/settings/_components/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/settings/_components/modal.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/settings/_components/profiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/settings/_components/profiles.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/settings/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/settings/layout.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/settings/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/settings/loading.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/settings/page.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/snippets/_components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/snippets/_components/button.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/snippets/_components/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/snippets/_components/modal.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/snippets/_components/snippet.module.scss: -------------------------------------------------------------------------------- 1 | .snippet { 2 | @apply flex; 3 | } 4 | -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/snippets/_components/snippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/snippets/_components/snippet.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/snippets/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/snippets/loading.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/dashboard/snippets/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/dashboard/snippets/page.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/layout.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/page.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/v/[cuid]/_components/CodePreview.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/v/[cuid]/_components/CodePreview.module.scss -------------------------------------------------------------------------------- /app/[locale]/(app)/v/[cuid]/_components/CodePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/v/[cuid]/_components/CodePreview.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/v/[cuid]/_components/CodePreviewIntlProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/v/[cuid]/_components/CodePreviewIntlProvider.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/v/[cuid]/_components/shiki/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/v/[cuid]/_components/shiki/Header.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/v/[cuid]/_components/shiki/LineNumbers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/v/[cuid]/_components/shiki/LineNumbers.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/v/[cuid]/_components/shiki/shiki.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/v/[cuid]/_components/shiki/shiki.scss -------------------------------------------------------------------------------- /app/[locale]/(app)/v/[cuid]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/v/[cuid]/page.tsx -------------------------------------------------------------------------------- /app/[locale]/(app)/v/[cuid]/raw/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(app)/v/[cuid]/raw/route.ts -------------------------------------------------------------------------------- /app/[locale]/(auth)/_components/layouts/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/_components/layouts/content.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/_components/layouts/go-back-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/_components/layouts/go-back-button.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/_components/layouts/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/_components/layouts/logo.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/auth/error/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/auth/error/_components/preview.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/auth/error/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/auth/error/page.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/auth/password/reset/[token]/_components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/auth/password/reset/[token]/_components/form.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/auth/password/reset/[token]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/auth/password/reset/[token]/page.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/auth/password/reset/_components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/auth/password/reset/_components/form.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/auth/password/reset/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/auth/password/reset/page.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/auth/signin/_components/Credentials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/auth/signin/_components/Credentials.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/auth/signin/_components/OAuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/auth/signin/_components/OAuthProvider.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/auth/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/auth/signin/page.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/auth/signup/_components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/auth/signup/_components/form.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/auth/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/auth/signup/page.tsx -------------------------------------------------------------------------------- /app/[locale]/(auth)/layout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/layout.module.scss -------------------------------------------------------------------------------- /app/[locale]/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/(auth)/layout.tsx -------------------------------------------------------------------------------- /app/[locale]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/[locale]/layout.tsx -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/api/auth/signup/_route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/api/auth/signup/_route.ts -------------------------------------------------------------------------------- /app/api/task/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/api/task/route.ts -------------------------------------------------------------------------------- /app/api/user/authenticators/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/api/user/authenticators/route.ts -------------------------------------------------------------------------------- /app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/error.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/auto-imports.d.ts -------------------------------------------------------------------------------- /components/animated-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/animated-logo.tsx -------------------------------------------------------------------------------- /components/confirmation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/confirmation.tsx -------------------------------------------------------------------------------- /components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/form.tsx -------------------------------------------------------------------------------- /components/navigation-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/navigation-link.tsx -------------------------------------------------------------------------------- /components/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/provider.tsx -------------------------------------------------------------------------------- /components/server-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/server-provider.tsx -------------------------------------------------------------------------------- /components/status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/status.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/action-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/action-bar.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/blockquote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/blockquote.tsx -------------------------------------------------------------------------------- /components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/checkbox-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/checkbox-card.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/clipboard.tsx -------------------------------------------------------------------------------- /components/ui/close-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/close-button.tsx -------------------------------------------------------------------------------- /components/ui/color-mode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/color-mode.tsx -------------------------------------------------------------------------------- /components/ui/color-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/color-picker.tsx -------------------------------------------------------------------------------- /components/ui/data-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/data-list.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/empty-state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/empty-state.tsx -------------------------------------------------------------------------------- /components/ui/field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/field.tsx -------------------------------------------------------------------------------- /components/ui/file-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/file-upload.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/input-group.tsx -------------------------------------------------------------------------------- /components/ui/link-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/link-button.tsx -------------------------------------------------------------------------------- /components/ui/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/menu.tsx -------------------------------------------------------------------------------- /components/ui/native-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/native-select.tsx -------------------------------------------------------------------------------- /components/ui/number-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/number-input.tsx -------------------------------------------------------------------------------- /components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/pagination.tsx -------------------------------------------------------------------------------- /components/ui/password-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/password-input.tsx -------------------------------------------------------------------------------- /components/ui/pin-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/pin-input.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/progress-circle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/progress-circle.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/prose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/prose.tsx -------------------------------------------------------------------------------- /components/ui/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/provider.tsx -------------------------------------------------------------------------------- /components/ui/radio-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/radio-card.tsx -------------------------------------------------------------------------------- /components/ui/radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/radio.tsx -------------------------------------------------------------------------------- /components/ui/rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/rating.tsx -------------------------------------------------------------------------------- /components/ui/segmented-control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/segmented-control.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/stat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/stat.tsx -------------------------------------------------------------------------------- /components/ui/status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/status.tsx -------------------------------------------------------------------------------- /components/ui/stepper-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/stepper-input.tsx -------------------------------------------------------------------------------- /components/ui/steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/steps.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/tag.tsx -------------------------------------------------------------------------------- /components/ui/timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/timeline.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/toggle-tip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/toggle-tip.tsx -------------------------------------------------------------------------------- /components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/toggle.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/uno-css-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/components/uno-css-indicator.tsx -------------------------------------------------------------------------------- /config/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/config/app.tsx -------------------------------------------------------------------------------- /config/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/config/dashboard.tsx -------------------------------------------------------------------------------- /enums/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/enums/app.ts -------------------------------------------------------------------------------- /enums/paste.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/enums/paste.ts -------------------------------------------------------------------------------- /enums/response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/enums/response.ts -------------------------------------------------------------------------------- /enums/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/enums/user.ts -------------------------------------------------------------------------------- /env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/env.mjs -------------------------------------------------------------------------------- /hooks/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/hooks/actions.ts -------------------------------------------------------------------------------- /hooks/requests/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/hooks/requests/user.ts -------------------------------------------------------------------------------- /hooks/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/hooks/toast.ts -------------------------------------------------------------------------------- /libs/auth/config/edge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/auth/config/edge.ts -------------------------------------------------------------------------------- /libs/auth/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/auth/config/index.ts -------------------------------------------------------------------------------- /libs/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/auth/index.ts -------------------------------------------------------------------------------- /libs/auth/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/auth/providers.tsx -------------------------------------------------------------------------------- /libs/auth/webauthn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/auth/webauthn.ts -------------------------------------------------------------------------------- /libs/framer/shaking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/framer/shaking.ts -------------------------------------------------------------------------------- /libs/i18n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/i18n.tsx -------------------------------------------------------------------------------- /libs/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/navigation.ts -------------------------------------------------------------------------------- /libs/prisma/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/prisma/client.ts -------------------------------------------------------------------------------- /libs/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/requests.ts -------------------------------------------------------------------------------- /libs/services/users/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/services/users/user.ts -------------------------------------------------------------------------------- /libs/shiki/extends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/shiki/extends.ts -------------------------------------------------------------------------------- /libs/shiki/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/shiki/index.ts -------------------------------------------------------------------------------- /libs/validation/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/validation/auth.ts -------------------------------------------------------------------------------- /libs/validation/paste.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/validation/paste.ts -------------------------------------------------------------------------------- /libs/validation/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/libs/validation/user.ts -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /messages/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/messages/en.yml -------------------------------------------------------------------------------- /messages/zh-CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/messages/zh-CN.yml -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/prisma/README.md -------------------------------------------------------------------------------- /prisma/postgresql/migrations/20231019164642_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/prisma/postgresql/migrations/20231019164642_init/migration.sql -------------------------------------------------------------------------------- /prisma/postgresql/migrations/20231021115443_add_paste_field_type/migration.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "public"."pastes" ADD COLUMN "type" INTEGER NOT NULL DEFAULT 1; 2 | -------------------------------------------------------------------------------- /prisma/postgresql/migrations/20231021123408_add_fields/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/prisma/postgresql/migrations/20231021123408_add_fields/migration.sql -------------------------------------------------------------------------------- /prisma/postgresql/migrations/20231024065713_add_web_authn_fields/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/prisma/postgresql/migrations/20231024065713_add_web_authn_fields/migration.sql -------------------------------------------------------------------------------- /prisma/postgresql/migrations/20231026031107_add_authenticator_field_name/migration.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "authenticators" ADD COLUMN "name" TEXT; 2 | -------------------------------------------------------------------------------- /prisma/postgresql/migrations/20231026133156_recreate_next_auth_tables/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/prisma/postgresql/migrations/20231026133156_recreate_next_auth_tables/migration.sql -------------------------------------------------------------------------------- /prisma/postgresql/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/prisma/postgresql/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/postgresql/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/prisma/postgresql/schema.prisma -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/prisma/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/scripts/prisma/db.ts -------------------------------------------------------------------------------- /scripts/prisma/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/scripts/prisma/generate.ts -------------------------------------------------------------------------------- /scripts/prisma/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/scripts/prisma/migrate.ts -------------------------------------------------------------------------------- /scripts/tools/gen-oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/scripts/tools/gen-oauth.ts -------------------------------------------------------------------------------- /styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/styles/global.scss -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/uno.config.ts -------------------------------------------------------------------------------- /utils/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/utils/actions.ts -------------------------------------------------------------------------------- /utils/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/utils/app.ts -------------------------------------------------------------------------------- /utils/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/utils/cookies.ts -------------------------------------------------------------------------------- /utils/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/utils/formatter.ts -------------------------------------------------------------------------------- /utils/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/utils/fs.ts -------------------------------------------------------------------------------- /utils/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/utils/helper.ts -------------------------------------------------------------------------------- /utils/middlewares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/utils/middlewares.ts -------------------------------------------------------------------------------- /utils/response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/utils/response.ts -------------------------------------------------------------------------------- /utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/utils/strings.ts -------------------------------------------------------------------------------- /utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/utils/types.ts -------------------------------------------------------------------------------- /utils/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/utils/user.ts -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenhat616/pastebin/HEAD/vite.config.ts --------------------------------------------------------------------------------