├── .eslintrc.json ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── components.json ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── logo.png ├── logo.svg ├── next.svg └── vercel.svg ├── src ├── app │ ├── (auth) │ │ ├── layout.tsx │ │ └── login │ │ │ ├── components │ │ │ └── LoginForm.tsx │ │ │ └── page.tsx │ ├── (protected) │ │ ├── app │ │ │ ├── collections │ │ │ │ └── [cid] │ │ │ │ │ ├── components │ │ │ │ │ ├── column.tsx │ │ │ │ │ ├── data-table-facted-filter.tsx │ │ │ │ │ ├── data-table-pagination.tsx │ │ │ │ │ ├── data-table-toolbar.tsx │ │ │ │ │ ├── data-table-view-options.tsx │ │ │ │ │ ├── data-table.tsx │ │ │ │ │ └── table-skeleton.tsx │ │ │ │ │ ├── edit │ │ │ │ │ └── documents │ │ │ │ │ │ └── [did] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── new │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── view │ │ │ │ │ └── documents │ │ │ │ │ └── [did] │ │ │ │ │ └── page.tsx │ │ │ ├── components │ │ │ │ ├── DemoGraph.tsx │ │ │ │ ├── header │ │ │ │ │ ├── BreadCrumb.tsx │ │ │ │ │ └── Header.tsx │ │ │ │ └── sidebar │ │ │ │ │ ├── Sidebar.tsx │ │ │ │ │ └── SidebarNavs.tsx │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ ├── profile │ │ │ │ └── page.tsx │ │ │ └── settings │ │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── not-found.tsx │ └── page.tsx ├── appwrite │ └── appwrite.ts ├── components │ ├── shared │ │ ├── Logo.tsx │ │ ├── PageLoader.tsx │ │ ├── SearchCommandBox.tsx │ │ └── view │ │ │ └── ViewFile.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── popover.tsx │ │ ├── radio-group.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── skeleton.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts ├── config │ └── config.ts ├── helpers │ ├── findCollectionById.ts │ └── getShortcutKey.ts ├── hooks │ └── reduxHooks.ts ├── interfaces │ ├── ICollection.ts │ ├── IColumn.ts │ ├── IConfig.ts │ ├── IGroup.ts │ └── IShortcut.ts ├── lib │ ├── services │ │ └── auth.service.ts │ └── utils.ts ├── redux │ ├── appSlice.ts │ ├── collectionSlice.ts │ └── store.ts └── theme │ ├── ThemeProvider.tsx │ └── ToggleTheme.tsx ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/SECURITY.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/components.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/login/components/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(auth)/login/components/LoginForm.tsx -------------------------------------------------------------------------------- /src/app/(auth)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(auth)/login/page.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/collections/[cid]/components/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/collections/[cid]/components/column.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/collections/[cid]/components/data-table-facted-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/collections/[cid]/components/data-table-facted-filter.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/collections/[cid]/components/data-table-pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/collections/[cid]/components/data-table-pagination.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/collections/[cid]/components/data-table-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/collections/[cid]/components/data-table-toolbar.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/collections/[cid]/components/data-table-view-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/collections/[cid]/components/data-table-view-options.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/collections/[cid]/components/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/collections/[cid]/components/data-table.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/collections/[cid]/components/table-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/collections/[cid]/components/table-skeleton.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/collections/[cid]/edit/documents/[did]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/collections/[cid]/edit/documents/[did]/page.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/collections/[cid]/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/collections/[cid]/new/page.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/collections/[cid]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/collections/[cid]/page.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/collections/[cid]/view/documents/[did]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/collections/[cid]/view/documents/[did]/page.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/components/DemoGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/components/DemoGraph.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/components/header/BreadCrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/components/header/BreadCrumb.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/components/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/components/header/Header.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/components/sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/components/sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/components/sidebar/SidebarNavs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/components/sidebar/SidebarNavs.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/layout.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/page.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/profile/page.tsx -------------------------------------------------------------------------------- /src/app/(protected)/app/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/app/settings/page.tsx -------------------------------------------------------------------------------- /src/app/(protected)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/(protected)/layout.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/appwrite/appwrite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/appwrite/appwrite.ts -------------------------------------------------------------------------------- /src/components/shared/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/shared/Logo.tsx -------------------------------------------------------------------------------- /src/components/shared/PageLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/shared/PageLoader.tsx -------------------------------------------------------------------------------- /src/components/shared/SearchCommandBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/shared/SearchCommandBox.tsx -------------------------------------------------------------------------------- /src/components/shared/view/ViewFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/shared/view/ViewFile.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/config/config.ts -------------------------------------------------------------------------------- /src/helpers/findCollectionById.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/helpers/findCollectionById.ts -------------------------------------------------------------------------------- /src/helpers/getShortcutKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/helpers/getShortcutKey.ts -------------------------------------------------------------------------------- /src/hooks/reduxHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/hooks/reduxHooks.ts -------------------------------------------------------------------------------- /src/interfaces/ICollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/interfaces/ICollection.ts -------------------------------------------------------------------------------- /src/interfaces/IColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/interfaces/IColumn.ts -------------------------------------------------------------------------------- /src/interfaces/IConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/interfaces/IConfig.ts -------------------------------------------------------------------------------- /src/interfaces/IGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/interfaces/IGroup.ts -------------------------------------------------------------------------------- /src/interfaces/IShortcut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/interfaces/IShortcut.ts -------------------------------------------------------------------------------- /src/lib/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/lib/services/auth.service.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/redux/appSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/redux/appSlice.ts -------------------------------------------------------------------------------- /src/redux/collectionSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/redux/collectionSlice.ts -------------------------------------------------------------------------------- /src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/redux/store.ts -------------------------------------------------------------------------------- /src/theme/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/theme/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/theme/ToggleTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/src/theme/ToggleTheme.tsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiazMorshed2007/appwrite-manager/HEAD/tsconfig.json --------------------------------------------------------------------------------