├── .github └── workflows │ └── docker-image.yml ├── Dockerfile ├── app ├── admin │ ├── dashboard │ │ └── page.tsx │ ├── login │ │ └── page.tsx │ ├── settings │ │ └── page.tsx │ └── users │ │ └── page.tsx ├── api │ ├── admin │ │ ├── admins │ │ │ └── route.ts │ │ ├── auth │ │ │ ├── login │ │ │ │ └── route.ts │ │ │ └── logout │ │ │ │ └── route.ts │ │ ├── settings │ │ │ └── route.ts │ │ └── users │ │ │ ├── [id] │ │ │ └── route.ts │ │ │ └── route.ts │ ├── auth │ │ ├── login │ │ │ └── route.ts │ │ ├── logout │ │ │ └── route.ts │ │ ├── me │ │ │ └── route.ts │ │ └── register │ │ │ └── route.ts │ ├── init │ │ └── route.ts │ ├── public-settings │ │ └── route.ts │ ├── settings │ │ └── route.ts │ ├── stations │ │ ├── [id] │ │ │ ├── models │ │ │ │ └── route.ts │ │ │ ├── route.ts │ │ │ ├── test │ │ │ │ └── route.ts │ │ │ └── usage │ │ │ │ └── route.ts │ │ └── route.ts │ ├── stats │ │ ├── admin │ │ │ └── route.ts │ │ └── user │ │ │ └── route.ts │ └── user │ │ └── profile │ │ └── route.ts ├── dashboard │ ├── page.tsx │ └── settings │ │ └── page.tsx ├── globals.css ├── layout.tsx ├── login │ └── page.tsx ├── page.tsx └── register │ └── page.tsx ├── components.json ├── components ├── admin-dashboard-layout.tsx ├── admin-dashboard.tsx ├── captcha.tsx ├── dashboard-layout.tsx ├── models-dialog.tsx ├── station-card.tsx ├── station-dialog.tsx ├── stations-manager.tsx ├── system-settings.tsx ├── theme-provider.tsx ├── ui │ ├── accordion.tsx │ ├── alert-dialog.tsx │ ├── alert.tsx │ ├── aspect-ratio.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── breadcrumb.tsx │ ├── button-group.tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── card.tsx │ ├── carousel.tsx │ ├── chart.tsx │ ├── checkbox.tsx │ ├── collapsible.tsx │ ├── command.tsx │ ├── context-menu.tsx │ ├── dialog.tsx │ ├── drawer.tsx │ ├── dropdown-menu.tsx │ ├── empty.tsx │ ├── field.tsx │ ├── form.tsx │ ├── hover-card.tsx │ ├── input-group.tsx │ ├── input-otp.tsx │ ├── input.tsx │ ├── item.tsx │ ├── kbd.tsx │ ├── label.tsx │ ├── menubar.tsx │ ├── navigation-menu.tsx │ ├── pagination.tsx │ ├── popover.tsx │ ├── progress.tsx │ ├── radio-group.tsx │ ├── resizable.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── sidebar.tsx │ ├── skeleton.tsx │ ├── slider.tsx │ ├── sonner.tsx │ ├── spinner.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── toast.tsx │ ├── toaster.tsx │ ├── toggle-group.tsx │ ├── toggle.tsx │ ├── tooltip.tsx │ ├── use-mobile.tsx │ └── use-toast.ts ├── user-dashboard.tsx ├── user-dialog.tsx ├── user-management.tsx └── user-settings.tsx ├── hooks ├── use-mobile.ts └── use-toast.ts ├── lib ├── admin-guard.tsx ├── auth.ts ├── db.ts ├── types.ts ├── user-guard.tsx └── utils.ts ├── next.config.js ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml.bak ├── postcss.config.mjs ├── public ├── apple-icon.png ├── icon-dark-32x32.png ├── icon-light-32x32.png ├── icon.svg ├── placeholder-logo.png ├── placeholder-logo.svg ├── placeholder-user.jpg ├── placeholder.jpg └── placeholder.svg ├── readme.md ├── styles └── globals.css └── tsconfig.json /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/Dockerfile -------------------------------------------------------------------------------- /app/admin/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/admin/dashboard/page.tsx -------------------------------------------------------------------------------- /app/admin/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/admin/login/page.tsx -------------------------------------------------------------------------------- /app/admin/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/admin/settings/page.tsx -------------------------------------------------------------------------------- /app/admin/users/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/admin/users/page.tsx -------------------------------------------------------------------------------- /app/api/admin/admins/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/admin/admins/route.ts -------------------------------------------------------------------------------- /app/api/admin/auth/login/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/admin/auth/login/route.ts -------------------------------------------------------------------------------- /app/api/admin/auth/logout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/admin/auth/logout/route.ts -------------------------------------------------------------------------------- /app/api/admin/settings/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/admin/settings/route.ts -------------------------------------------------------------------------------- /app/api/admin/users/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/admin/users/[id]/route.ts -------------------------------------------------------------------------------- /app/api/admin/users/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/admin/users/route.ts -------------------------------------------------------------------------------- /app/api/auth/login/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/auth/login/route.ts -------------------------------------------------------------------------------- /app/api/auth/logout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/auth/logout/route.ts -------------------------------------------------------------------------------- /app/api/auth/me/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/auth/me/route.ts -------------------------------------------------------------------------------- /app/api/auth/register/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/auth/register/route.ts -------------------------------------------------------------------------------- /app/api/init/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/init/route.ts -------------------------------------------------------------------------------- /app/api/public-settings/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/public-settings/route.ts -------------------------------------------------------------------------------- /app/api/settings/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/settings/route.ts -------------------------------------------------------------------------------- /app/api/stations/[id]/models/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/stations/[id]/models/route.ts -------------------------------------------------------------------------------- /app/api/stations/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/stations/[id]/route.ts -------------------------------------------------------------------------------- /app/api/stations/[id]/test/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/stations/[id]/test/route.ts -------------------------------------------------------------------------------- /app/api/stations/[id]/usage/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/stations/[id]/usage/route.ts -------------------------------------------------------------------------------- /app/api/stations/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/stations/route.ts -------------------------------------------------------------------------------- /app/api/stats/admin/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/stats/admin/route.ts -------------------------------------------------------------------------------- /app/api/stats/user/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/stats/user/route.ts -------------------------------------------------------------------------------- /app/api/user/profile/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/api/user/profile/route.ts -------------------------------------------------------------------------------- /app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/dashboard/page.tsx -------------------------------------------------------------------------------- /app/dashboard/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/dashboard/settings/page.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/login/page.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/app/register/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components.json -------------------------------------------------------------------------------- /components/admin-dashboard-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/admin-dashboard-layout.tsx -------------------------------------------------------------------------------- /components/admin-dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/admin-dashboard.tsx -------------------------------------------------------------------------------- /components/captcha.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/captcha.tsx -------------------------------------------------------------------------------- /components/dashboard-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/dashboard-layout.tsx -------------------------------------------------------------------------------- /components/models-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/models-dialog.tsx -------------------------------------------------------------------------------- /components/station-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/station-card.tsx -------------------------------------------------------------------------------- /components/station-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/station-dialog.tsx -------------------------------------------------------------------------------- /components/stations-manager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/stations-manager.tsx -------------------------------------------------------------------------------- /components/system-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/system-settings.tsx -------------------------------------------------------------------------------- /components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/theme-provider.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /components/ui/button-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/button-group.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/carousel.tsx -------------------------------------------------------------------------------- /components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/chart.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/empty.tsx -------------------------------------------------------------------------------- /components/ui/field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/field.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/input-group.tsx -------------------------------------------------------------------------------- /components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/item.tsx -------------------------------------------------------------------------------- /components/ui/kbd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/kbd.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/menubar.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/pagination.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/resizable.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /components/ui/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/spinner.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/toggle.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/ui/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/use-mobile.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /components/user-dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/user-dashboard.tsx -------------------------------------------------------------------------------- /components/user-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/user-dialog.tsx -------------------------------------------------------------------------------- /components/user-management.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/user-management.tsx -------------------------------------------------------------------------------- /components/user-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/components/user-settings.tsx -------------------------------------------------------------------------------- /hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/hooks/use-mobile.ts -------------------------------------------------------------------------------- /hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/hooks/use-toast.ts -------------------------------------------------------------------------------- /lib/admin-guard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/lib/admin-guard.tsx -------------------------------------------------------------------------------- /lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/lib/auth.ts -------------------------------------------------------------------------------- /lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/lib/db.ts -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/lib/types.ts -------------------------------------------------------------------------------- /lib/user-guard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/lib/user-guard.tsx -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | output: 'standalone', // 将Next.js应用打包成独立可执行文件 3 | } 4 | -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/pnpm-lock.yaml.bak -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/public/apple-icon.png -------------------------------------------------------------------------------- /public/icon-dark-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/public/icon-dark-32x32.png -------------------------------------------------------------------------------- /public/icon-light-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/public/icon-light-32x32.png -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/placeholder-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/public/placeholder-logo.png -------------------------------------------------------------------------------- /public/placeholder-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/public/placeholder-logo.svg -------------------------------------------------------------------------------- /public/placeholder-user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/public/placeholder-user.jpg -------------------------------------------------------------------------------- /public/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/public/placeholder.jpg -------------------------------------------------------------------------------- /public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/public/placeholder.svg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/readme.md -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eraycc/API-Gateway-Manager/HEAD/tsconfig.json --------------------------------------------------------------------------------