├── .env.example ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── components.json ├── next.config.js ├── package.json ├── postcss.config.cjs ├── prettier.config.js ├── prisma └── schema.prisma ├── public ├── cat-logo.webp ├── favicon.ico └── robots.txt ├── src ├── app │ ├── _actions │ │ └── actions.ts │ ├── _components │ │ ├── footer.tsx │ │ ├── forms │ │ │ ├── create-subdomain-form.tsx │ │ │ ├── delete-subdomain-form.tsx │ │ │ ├── toast-error.ts │ │ │ └── update-subdomain-from.tsx │ │ ├── landing-chart.tsx │ │ ├── landing-page.tsx │ │ ├── login-button.tsx │ │ ├── providers │ │ │ ├── auth-provider.tsx │ │ │ └── posthog-provider.tsx │ │ └── top-nav.tsx │ ├── api │ │ └── auth │ │ │ └── [...nextauth] │ │ │ └── route.ts │ ├── layout.tsx │ ├── loading.tsx │ └── page.tsx ├── components │ ├── form-loading-button.tsx │ ├── switch-button.tsx │ └── ui │ │ ├── button.tsx │ │ ├── dialog.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sonner.tsx │ │ └── switch.tsx ├── env.js ├── lib │ └── utils.ts ├── server │ ├── apis.ts │ ├── auth.ts │ ├── cloudflare │ │ ├── apis.ts │ │ └── types.ts │ ├── db.ts │ └── queries.ts └── styles │ └── globals.css ├── start-database.sh ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # catway-dns 2 | 3 | Simple cloudflare based DNS manager 4 | -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/components.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/prettier.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/cat-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/public/cat-logo.webp -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/app/_actions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/_actions/actions.ts -------------------------------------------------------------------------------- /src/app/_components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/_components/footer.tsx -------------------------------------------------------------------------------- /src/app/_components/forms/create-subdomain-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/_components/forms/create-subdomain-form.tsx -------------------------------------------------------------------------------- /src/app/_components/forms/delete-subdomain-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/_components/forms/delete-subdomain-form.tsx -------------------------------------------------------------------------------- /src/app/_components/forms/toast-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/_components/forms/toast-error.ts -------------------------------------------------------------------------------- /src/app/_components/forms/update-subdomain-from.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/_components/forms/update-subdomain-from.tsx -------------------------------------------------------------------------------- /src/app/_components/landing-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/_components/landing-chart.tsx -------------------------------------------------------------------------------- /src/app/_components/landing-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/_components/landing-page.tsx -------------------------------------------------------------------------------- /src/app/_components/login-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/_components/login-button.tsx -------------------------------------------------------------------------------- /src/app/_components/providers/auth-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/_components/providers/auth-provider.tsx -------------------------------------------------------------------------------- /src/app/_components/providers/posthog-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/_components/providers/posthog-provider.tsx -------------------------------------------------------------------------------- /src/app/_components/top-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/_components/top-nav.tsx -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/loading.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/form-loading-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/components/form-loading-button.tsx -------------------------------------------------------------------------------- /src/components/switch-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/components/switch-button.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/env.js -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/server/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/server/apis.ts -------------------------------------------------------------------------------- /src/server/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/server/auth.ts -------------------------------------------------------------------------------- /src/server/cloudflare/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/server/cloudflare/apis.ts -------------------------------------------------------------------------------- /src/server/cloudflare/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/server/cloudflare/types.ts -------------------------------------------------------------------------------- /src/server/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/server/db.ts -------------------------------------------------------------------------------- /src/server/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/server/queries.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /start-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/start-database.sh -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaByte/catway-dns/HEAD/tsconfig.json --------------------------------------------------------------------------------