├── .github └── workflows │ ├── deploy_frontend.yml │ ├── deploy_k8s_orchestrator.yml │ ├── deploy_primary_backend.yml │ ├── deploy_worker.yml │ └── deploy_ws_relayer.yml ├── .gitignore ├── expo-base-app ├── app.json ├── app │ ├── (tabs) │ │ ├── _layout.tsx │ │ ├── explore.tsx │ │ └── index.tsx │ ├── +not-found.tsx │ └── _layout.tsx ├── assets │ ├── fonts │ │ └── SpaceMono-Regular.ttf │ └── images │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ ├── partial-react-logo.png │ │ ├── react-logo.png │ │ ├── react-logo@2x.png │ │ ├── react-logo@3x.png │ │ └── splash-icon.png ├── components │ ├── Collapsible.tsx │ ├── ExternalLink.tsx │ ├── HapticTab.tsx │ ├── HelloWave.tsx │ ├── ParallaxScrollView.tsx │ ├── ThemedText.tsx │ ├── ThemedView.tsx │ ├── __tests__ │ │ ├── ThemedText-test.tsx │ │ └── __snapshots__ │ │ │ └── ThemedText-test.tsx.snap │ └── ui │ │ ├── IconSymbol.ios.tsx │ │ ├── IconSymbol.tsx │ │ ├── TabBarBackground.ios.tsx │ │ └── TabBarBackground.tsx ├── constants │ └── Colors.ts ├── hooks │ ├── useColorScheme.ts │ ├── useColorScheme.web.ts │ └── useThemeColor.ts ├── package.json └── tsconfig.json ├── ext ├── .gitignore ├── CHANGELOG.md ├── README.md ├── bolty-listener-0.0.1.vsix ├── eslint.config.mjs ├── index.js ├── package-lock.json ├── package.json ├── src │ ├── extension.ts │ └── test │ │ └── extension.test.ts ├── tsconfig.json └── vsc-extension-quickstart.md ├── framework-serializer ├── .gitignore ├── README.md ├── bun.lock ├── index.ts ├── package.json └── tsconfig.json ├── mobile-magic ├── .gitignore ├── .npmrc ├── README.md ├── apps │ ├── frontend │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ ├── project │ │ │ │ └── [projectId] │ │ │ │ │ ├── Project.tsx │ │ │ │ │ └── page.tsx │ │ │ └── provider.tsx │ │ ├── components.json │ │ ├── components │ │ │ ├── Appbar.tsx │ │ │ ├── Header.tsx │ │ │ ├── PreviewIframe.tsx │ │ │ ├── ProjectWithInitRequest.tsx │ │ │ ├── ProjectsDrawer.tsx │ │ │ ├── Prompt.tsx │ │ │ ├── SideInfo.tsx │ │ │ ├── TemplateButtons.tsx │ │ │ ├── ToggleTheme.tsx │ │ │ ├── app-sidebar.tsx │ │ │ ├── hero.tsx │ │ │ ├── theme-button.tsx │ │ │ ├── theme-provider.tsx │ │ │ └── ui │ │ │ │ ├── alert-dialog.tsx │ │ │ │ ├── avatar.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── drawer.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── sheet.tsx │ │ │ │ ├── sidebar.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── sonner.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── textarea.tsx │ │ │ │ └── tooltip.tsx │ │ ├── config.ts │ │ ├── eslint.config.mjs │ │ ├── hooks │ │ │ ├── use-mobile.ts │ │ │ ├── useDebounce.ts │ │ │ ├── useProject.ts │ │ │ └── usePrompts.tsx │ │ ├── lib │ │ │ ├── animation-variants.ts │ │ │ ├── constants.ts │ │ │ └── utils.ts │ │ ├── middleware.ts │ │ ├── next.config.ts │ │ ├── package.json │ │ ├── postcss.config.mjs │ │ ├── public │ │ │ ├── file.svg │ │ │ ├── globe.svg │ │ │ ├── logo.svg │ │ │ ├── next.svg │ │ │ ├── vercel.svg │ │ │ └── window.svg │ │ ├── tsconfig.json │ │ └── utils │ │ │ └── formatDate.ts │ ├── k8s-orchestrator │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config.ts │ │ ├── index.ts │ │ ├── names.ts │ │ ├── package.json │ │ ├── redis.ts │ │ └── tsconfig.json │ ├── primary-backend │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.ts │ │ ├── package.json │ │ ├── tsconfig.json │ │ └── types.d.ts │ ├── worker-orchestrator │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── worker │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.ts │ │ ├── os.ts │ │ ├── package.json │ │ ├── parser.ts │ │ ├── systemPrompt.tsx │ │ ├── tsconfig.json │ │ ├── types.d.ts │ │ ├── worker.test.ts │ │ └── ws.ts │ └── ws-relayer │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json ├── bun.lock ├── docker-compose.yml ├── docker │ ├── Dockerfile.code-server │ ├── Dockerfile.frontend │ ├── Dockerfile.frontend.prod │ ├── Dockerfile.k8s-orchestrator │ ├── Dockerfile.primary-backend │ ├── Dockerfile.worker │ └── Dockerfile.ws-relayer ├── package.json ├── packages │ ├── common │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.ts │ │ ├── middleware.ts │ │ ├── package.json │ │ ├── tsconfig.json │ │ ├── types.d.ts │ │ └── types.ts │ ├── db │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.ts │ │ ├── package.json │ │ ├── prisma │ │ │ ├── migrations │ │ │ │ ├── 20250227175716_init │ │ │ │ │ └── migration.sql │ │ │ │ ├── 20250227180410_added_prompt │ │ │ │ │ └── migration.sql │ │ │ │ ├── 20250227180658_added_user_project_relatiobn │ │ │ │ │ └── migration.sql │ │ │ │ ├── 20250228074904_cd │ │ │ │ │ └── migration.sql │ │ │ │ ├── 20250301085409_added_actions │ │ │ │ │ └── migration.sql │ │ │ │ ├── 20250301085440_added_content │ │ │ │ │ └── migration.sql │ │ │ │ ├── 20250307191146_init │ │ │ │ │ └── migration.sql │ │ │ │ ├── 20250307201247_add_typ │ │ │ │ │ └── migration.sql │ │ │ │ ├── 20250307201550_ │ │ │ │ │ └── migration.sql │ │ │ │ ├── 20250309212901_added_react │ │ │ │ │ └── migration.sql │ │ │ │ └── migration_lock.toml │ │ │ └── schema.prisma │ │ └── tsconfig.json │ ├── eslint-config │ │ ├── README.md │ │ ├── base.js │ │ ├── next.js │ │ ├── package.json │ │ └── react-internal.js │ ├── typescript-config │ │ ├── base.json │ │ ├── nextjs.json │ │ ├── package.json │ │ └── react-library.json │ └── ui │ │ ├── eslint.config.mjs │ │ ├── package.json │ │ ├── src │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── code.tsx │ │ ├── info-banner.tsx │ │ └── particles.tsx │ │ ├── tsconfig.json │ │ └── turbo │ │ └── generators │ │ ├── config.ts │ │ └── templates │ │ └── component.hbs └── turbo.json ├── nextjs-base-app ├── README.md ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── eslint.config.mjs ├── next-env.d.ts ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public │ ├── file.svg │ ├── globe.svg │ ├── next.svg │ ├── vercel.svg │ └── window.svg └── tsconfig.json ├── ops ├── .gitignore ├── Caddyfile ├── app │ ├── frontend │ │ ├── .gitignore │ │ ├── deployment.yml │ │ └── service.yml │ ├── k8s-orchestrator │ │ ├── manifest.yml │ │ └── service_account.yml │ └── primary-backend │ │ ├── .gitignore │ │ ├── deployment.yml │ │ └── service.yml ├── caddy.yml ├── deployment.yml ├── monitoring │ ├── grafana-values.yaml │ ├── primary-backend-servicemonitor.yaml │ ├── prometheus-values.yaml │ └── script.sh ├── pod.yml ├── reset.sh └── script.sh └── react-base-app ├── .gitignore ├── components.json ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── components │ └── ui │ │ └── button.tsx ├── index.css ├── lib │ └── utils.ts ├── main.tsx └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/workflows/deploy_frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/.github/workflows/deploy_frontend.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_k8s_orchestrator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/.github/workflows/deploy_k8s_orchestrator.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_primary_backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/.github/workflows/deploy_primary_backend.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_worker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/.github/workflows/deploy_worker.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_ws_relayer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/.github/workflows/deploy_ws_relayer.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | docker-compose.yml 2 | -------------------------------------------------------------------------------- /expo-base-app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/app.json -------------------------------------------------------------------------------- /expo-base-app/app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /expo-base-app/app/(tabs)/explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/app/(tabs)/explore.tsx -------------------------------------------------------------------------------- /expo-base-app/app/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/app/(tabs)/index.tsx -------------------------------------------------------------------------------- /expo-base-app/app/+not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/app/+not-found.tsx -------------------------------------------------------------------------------- /expo-base-app/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/app/_layout.tsx -------------------------------------------------------------------------------- /expo-base-app/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /expo-base-app/assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /expo-base-app/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/assets/images/favicon.png -------------------------------------------------------------------------------- /expo-base-app/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/assets/images/icon.png -------------------------------------------------------------------------------- /expo-base-app/assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /expo-base-app/assets/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/assets/images/react-logo.png -------------------------------------------------------------------------------- /expo-base-app/assets/images/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/assets/images/react-logo@2x.png -------------------------------------------------------------------------------- /expo-base-app/assets/images/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/assets/images/react-logo@3x.png -------------------------------------------------------------------------------- /expo-base-app/assets/images/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/assets/images/splash-icon.png -------------------------------------------------------------------------------- /expo-base-app/components/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/components/Collapsible.tsx -------------------------------------------------------------------------------- /expo-base-app/components/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/components/ExternalLink.tsx -------------------------------------------------------------------------------- /expo-base-app/components/HapticTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/components/HapticTab.tsx -------------------------------------------------------------------------------- /expo-base-app/components/HelloWave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/components/HelloWave.tsx -------------------------------------------------------------------------------- /expo-base-app/components/ParallaxScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/components/ParallaxScrollView.tsx -------------------------------------------------------------------------------- /expo-base-app/components/ThemedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/components/ThemedText.tsx -------------------------------------------------------------------------------- /expo-base-app/components/ThemedView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/components/ThemedView.tsx -------------------------------------------------------------------------------- /expo-base-app/components/__tests__/ThemedText-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/components/__tests__/ThemedText-test.tsx -------------------------------------------------------------------------------- /expo-base-app/components/__tests__/__snapshots__/ThemedText-test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/components/__tests__/__snapshots__/ThemedText-test.tsx.snap -------------------------------------------------------------------------------- /expo-base-app/components/ui/IconSymbol.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/components/ui/IconSymbol.ios.tsx -------------------------------------------------------------------------------- /expo-base-app/components/ui/IconSymbol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/components/ui/IconSymbol.tsx -------------------------------------------------------------------------------- /expo-base-app/components/ui/TabBarBackground.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/components/ui/TabBarBackground.ios.tsx -------------------------------------------------------------------------------- /expo-base-app/components/ui/TabBarBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/components/ui/TabBarBackground.tsx -------------------------------------------------------------------------------- /expo-base-app/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/constants/Colors.ts -------------------------------------------------------------------------------- /expo-base-app/hooks/useColorScheme.ts: -------------------------------------------------------------------------------- 1 | export { useColorScheme } from 'react-native'; 2 | -------------------------------------------------------------------------------- /expo-base-app/hooks/useColorScheme.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/hooks/useColorScheme.web.ts -------------------------------------------------------------------------------- /expo-base-app/hooks/useThemeColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/hooks/useThemeColor.ts -------------------------------------------------------------------------------- /expo-base-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/package.json -------------------------------------------------------------------------------- /expo-base-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/expo-base-app/tsconfig.json -------------------------------------------------------------------------------- /ext/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | .DS_Store -------------------------------------------------------------------------------- /ext/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ext/CHANGELOG.md -------------------------------------------------------------------------------- /ext/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/bolty-listener-0.0.1.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ext/bolty-listener-0.0.1.vsix -------------------------------------------------------------------------------- /ext/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ext/eslint.config.mjs -------------------------------------------------------------------------------- /ext/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ext/index.js -------------------------------------------------------------------------------- /ext/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ext/package-lock.json -------------------------------------------------------------------------------- /ext/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ext/package.json -------------------------------------------------------------------------------- /ext/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ext/src/extension.ts -------------------------------------------------------------------------------- /ext/src/test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ext/src/test/extension.test.ts -------------------------------------------------------------------------------- /ext/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ext/tsconfig.json -------------------------------------------------------------------------------- /ext/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ext/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /framework-serializer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/framework-serializer/.gitignore -------------------------------------------------------------------------------- /framework-serializer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/framework-serializer/README.md -------------------------------------------------------------------------------- /framework-serializer/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/framework-serializer/bun.lock -------------------------------------------------------------------------------- /framework-serializer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/framework-serializer/index.ts -------------------------------------------------------------------------------- /framework-serializer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/framework-serializer/package.json -------------------------------------------------------------------------------- /framework-serializer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/framework-serializer/tsconfig.json -------------------------------------------------------------------------------- /mobile-magic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/.gitignore -------------------------------------------------------------------------------- /mobile-magic/.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobile-magic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/README.md -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/.gitignore -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/README.md -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/app/favicon.ico -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/app/globals.css -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/app/layout.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/app/page.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/app/project/[projectId]/Project.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/app/project/[projectId]/Project.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/app/project/[projectId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/app/project/[projectId]/page.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/app/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/app/provider.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components.json -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/Appbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/Appbar.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/Header.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/PreviewIframe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/PreviewIframe.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ProjectWithInitRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ProjectWithInitRequest.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ProjectsDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ProjectsDrawer.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/Prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/Prompt.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/SideInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/SideInfo.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/TemplateButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/TemplateButtons.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ToggleTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ToggleTheme.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/app-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/app-sidebar.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/hero.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/theme-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/theme-button.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/theme-provider.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ui/avatar.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ui/button.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ui/drawer.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ui/input.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ui/label.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ui/separator.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ui/sheet.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ui/sonner.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ui/switch.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ui/textarea.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/config.ts -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/eslint.config.mjs -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/hooks/use-mobile.ts -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/hooks/useDebounce.ts -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/hooks/useProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/hooks/useProject.ts -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/hooks/usePrompts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/hooks/usePrompts.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/lib/animation-variants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/lib/animation-variants.ts -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/lib/constants.ts -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/lib/utils.ts -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/middleware.ts -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/next.config.ts -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/package.json -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/postcss.config.mjs -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/public/file.svg -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/public/globe.svg -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/public/logo.svg -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/public/next.svg -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/public/vercel.svg -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/public/window.svg -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/tsconfig.json -------------------------------------------------------------------------------- /mobile-magic/apps/frontend/utils/formatDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/frontend/utils/formatDate.ts -------------------------------------------------------------------------------- /mobile-magic/apps/k8s-orchestrator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/k8s-orchestrator/.gitignore -------------------------------------------------------------------------------- /mobile-magic/apps/k8s-orchestrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/k8s-orchestrator/README.md -------------------------------------------------------------------------------- /mobile-magic/apps/k8s-orchestrator/config.ts: -------------------------------------------------------------------------------- 1 | 2 | export const DOMAIN = "cloud.antidevs.com"; -------------------------------------------------------------------------------- /mobile-magic/apps/k8s-orchestrator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/k8s-orchestrator/index.ts -------------------------------------------------------------------------------- /mobile-magic/apps/k8s-orchestrator/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/k8s-orchestrator/names.ts -------------------------------------------------------------------------------- /mobile-magic/apps/k8s-orchestrator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/k8s-orchestrator/package.json -------------------------------------------------------------------------------- /mobile-magic/apps/k8s-orchestrator/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/k8s-orchestrator/redis.ts -------------------------------------------------------------------------------- /mobile-magic/apps/k8s-orchestrator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/k8s-orchestrator/tsconfig.json -------------------------------------------------------------------------------- /mobile-magic/apps/primary-backend/.env.example: -------------------------------------------------------------------------------- 1 | JWT_PUBLIC_KEY= -------------------------------------------------------------------------------- /mobile-magic/apps/primary-backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/primary-backend/.gitignore -------------------------------------------------------------------------------- /mobile-magic/apps/primary-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/primary-backend/README.md -------------------------------------------------------------------------------- /mobile-magic/apps/primary-backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/primary-backend/index.ts -------------------------------------------------------------------------------- /mobile-magic/apps/primary-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/primary-backend/package.json -------------------------------------------------------------------------------- /mobile-magic/apps/primary-backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/primary-backend/tsconfig.json -------------------------------------------------------------------------------- /mobile-magic/apps/primary-backend/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/primary-backend/types.d.ts -------------------------------------------------------------------------------- /mobile-magic/apps/worker-orchestrator/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker-orchestrator/.env.example -------------------------------------------------------------------------------- /mobile-magic/apps/worker-orchestrator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker-orchestrator/.gitignore -------------------------------------------------------------------------------- /mobile-magic/apps/worker-orchestrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker-orchestrator/README.md -------------------------------------------------------------------------------- /mobile-magic/apps/worker-orchestrator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker-orchestrator/index.ts -------------------------------------------------------------------------------- /mobile-magic/apps/worker-orchestrator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker-orchestrator/package.json -------------------------------------------------------------------------------- /mobile-magic/apps/worker-orchestrator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker-orchestrator/tsconfig.json -------------------------------------------------------------------------------- /mobile-magic/apps/worker/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker/.env.example -------------------------------------------------------------------------------- /mobile-magic/apps/worker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker/.gitignore -------------------------------------------------------------------------------- /mobile-magic/apps/worker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker/README.md -------------------------------------------------------------------------------- /mobile-magic/apps/worker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker/index.ts -------------------------------------------------------------------------------- /mobile-magic/apps/worker/os.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker/os.ts -------------------------------------------------------------------------------- /mobile-magic/apps/worker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker/package.json -------------------------------------------------------------------------------- /mobile-magic/apps/worker/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker/parser.ts -------------------------------------------------------------------------------- /mobile-magic/apps/worker/systemPrompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker/systemPrompt.tsx -------------------------------------------------------------------------------- /mobile-magic/apps/worker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker/tsconfig.json -------------------------------------------------------------------------------- /mobile-magic/apps/worker/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker/types.d.ts -------------------------------------------------------------------------------- /mobile-magic/apps/worker/worker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker/worker.test.ts -------------------------------------------------------------------------------- /mobile-magic/apps/worker/ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/worker/ws.ts -------------------------------------------------------------------------------- /mobile-magic/apps/ws-relayer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/ws-relayer/.gitignore -------------------------------------------------------------------------------- /mobile-magic/apps/ws-relayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/ws-relayer/README.md -------------------------------------------------------------------------------- /mobile-magic/apps/ws-relayer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/ws-relayer/index.ts -------------------------------------------------------------------------------- /mobile-magic/apps/ws-relayer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/ws-relayer/package.json -------------------------------------------------------------------------------- /mobile-magic/apps/ws-relayer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/apps/ws-relayer/tsconfig.json -------------------------------------------------------------------------------- /mobile-magic/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/bun.lock -------------------------------------------------------------------------------- /mobile-magic/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/docker-compose.yml -------------------------------------------------------------------------------- /mobile-magic/docker/Dockerfile.code-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/docker/Dockerfile.code-server -------------------------------------------------------------------------------- /mobile-magic/docker/Dockerfile.frontend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/docker/Dockerfile.frontend -------------------------------------------------------------------------------- /mobile-magic/docker/Dockerfile.frontend.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/docker/Dockerfile.frontend.prod -------------------------------------------------------------------------------- /mobile-magic/docker/Dockerfile.k8s-orchestrator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/docker/Dockerfile.k8s-orchestrator -------------------------------------------------------------------------------- /mobile-magic/docker/Dockerfile.primary-backend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/docker/Dockerfile.primary-backend -------------------------------------------------------------------------------- /mobile-magic/docker/Dockerfile.worker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/docker/Dockerfile.worker -------------------------------------------------------------------------------- /mobile-magic/docker/Dockerfile.ws-relayer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/docker/Dockerfile.ws-relayer -------------------------------------------------------------------------------- /mobile-magic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/package.json -------------------------------------------------------------------------------- /mobile-magic/packages/common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/common/.gitignore -------------------------------------------------------------------------------- /mobile-magic/packages/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/common/README.md -------------------------------------------------------------------------------- /mobile-magic/packages/common/index.ts: -------------------------------------------------------------------------------- 1 | console.log("Hello via Bun!"); -------------------------------------------------------------------------------- /mobile-magic/packages/common/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/common/middleware.ts -------------------------------------------------------------------------------- /mobile-magic/packages/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/common/package.json -------------------------------------------------------------------------------- /mobile-magic/packages/common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/common/tsconfig.json -------------------------------------------------------------------------------- /mobile-magic/packages/common/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/common/types.d.ts -------------------------------------------------------------------------------- /mobile-magic/packages/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/common/types.ts -------------------------------------------------------------------------------- /mobile-magic/packages/db/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/.env.example -------------------------------------------------------------------------------- /mobile-magic/packages/db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/.gitignore -------------------------------------------------------------------------------- /mobile-magic/packages/db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/README.md -------------------------------------------------------------------------------- /mobile-magic/packages/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/index.ts -------------------------------------------------------------------------------- /mobile-magic/packages/db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/package.json -------------------------------------------------------------------------------- /mobile-magic/packages/db/prisma/migrations/20250227175716_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/prisma/migrations/20250227175716_init/migration.sql -------------------------------------------------------------------------------- /mobile-magic/packages/db/prisma/migrations/20250227180410_added_prompt/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/prisma/migrations/20250227180410_added_prompt/migration.sql -------------------------------------------------------------------------------- /mobile-magic/packages/db/prisma/migrations/20250227180658_added_user_project_relatiobn/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/prisma/migrations/20250227180658_added_user_project_relatiobn/migration.sql -------------------------------------------------------------------------------- /mobile-magic/packages/db/prisma/migrations/20250228074904_cd/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/prisma/migrations/20250228074904_cd/migration.sql -------------------------------------------------------------------------------- /mobile-magic/packages/db/prisma/migrations/20250301085409_added_actions/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/prisma/migrations/20250301085409_added_actions/migration.sql -------------------------------------------------------------------------------- /mobile-magic/packages/db/prisma/migrations/20250301085440_added_content/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/prisma/migrations/20250301085440_added_content/migration.sql -------------------------------------------------------------------------------- /mobile-magic/packages/db/prisma/migrations/20250307191146_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/prisma/migrations/20250307191146_init/migration.sql -------------------------------------------------------------------------------- /mobile-magic/packages/db/prisma/migrations/20250307201247_add_typ/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/prisma/migrations/20250307201247_add_typ/migration.sql -------------------------------------------------------------------------------- /mobile-magic/packages/db/prisma/migrations/20250307201550_/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/prisma/migrations/20250307201550_/migration.sql -------------------------------------------------------------------------------- /mobile-magic/packages/db/prisma/migrations/20250309212901_added_react/migration.sql: -------------------------------------------------------------------------------- 1 | -- AlterEnum 2 | ALTER TYPE "ProjectType" ADD VALUE 'REACT'; 3 | -------------------------------------------------------------------------------- /mobile-magic/packages/db/prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /mobile-magic/packages/db/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/prisma/schema.prisma -------------------------------------------------------------------------------- /mobile-magic/packages/db/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/db/tsconfig.json -------------------------------------------------------------------------------- /mobile-magic/packages/eslint-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/eslint-config/README.md -------------------------------------------------------------------------------- /mobile-magic/packages/eslint-config/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/eslint-config/base.js -------------------------------------------------------------------------------- /mobile-magic/packages/eslint-config/next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/eslint-config/next.js -------------------------------------------------------------------------------- /mobile-magic/packages/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/eslint-config/package.json -------------------------------------------------------------------------------- /mobile-magic/packages/eslint-config/react-internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/eslint-config/react-internal.js -------------------------------------------------------------------------------- /mobile-magic/packages/typescript-config/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/typescript-config/base.json -------------------------------------------------------------------------------- /mobile-magic/packages/typescript-config/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/typescript-config/nextjs.json -------------------------------------------------------------------------------- /mobile-magic/packages/typescript-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/typescript-config/package.json -------------------------------------------------------------------------------- /mobile-magic/packages/typescript-config/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/typescript-config/react-library.json -------------------------------------------------------------------------------- /mobile-magic/packages/ui/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/ui/eslint.config.mjs -------------------------------------------------------------------------------- /mobile-magic/packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/ui/package.json -------------------------------------------------------------------------------- /mobile-magic/packages/ui/src/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/ui/src/button.tsx -------------------------------------------------------------------------------- /mobile-magic/packages/ui/src/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/ui/src/card.tsx -------------------------------------------------------------------------------- /mobile-magic/packages/ui/src/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/ui/src/code.tsx -------------------------------------------------------------------------------- /mobile-magic/packages/ui/src/info-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/ui/src/info-banner.tsx -------------------------------------------------------------------------------- /mobile-magic/packages/ui/src/particles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/ui/src/particles.tsx -------------------------------------------------------------------------------- /mobile-magic/packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /mobile-magic/packages/ui/turbo/generators/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/ui/turbo/generators/config.ts -------------------------------------------------------------------------------- /mobile-magic/packages/ui/turbo/generators/templates/component.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/packages/ui/turbo/generators/templates/component.hbs -------------------------------------------------------------------------------- /mobile-magic/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/mobile-magic/turbo.json -------------------------------------------------------------------------------- /nextjs-base-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/README.md -------------------------------------------------------------------------------- /nextjs-base-app/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/app/favicon.ico -------------------------------------------------------------------------------- /nextjs-base-app/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/app/globals.css -------------------------------------------------------------------------------- /nextjs-base-app/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/app/layout.tsx -------------------------------------------------------------------------------- /nextjs-base-app/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/app/page.tsx -------------------------------------------------------------------------------- /nextjs-base-app/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/eslint.config.mjs -------------------------------------------------------------------------------- /nextjs-base-app/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/next-env.d.ts -------------------------------------------------------------------------------- /nextjs-base-app/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/next.config.ts -------------------------------------------------------------------------------- /nextjs-base-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/package.json -------------------------------------------------------------------------------- /nextjs-base-app/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/postcss.config.mjs -------------------------------------------------------------------------------- /nextjs-base-app/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/public/file.svg -------------------------------------------------------------------------------- /nextjs-base-app/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/public/globe.svg -------------------------------------------------------------------------------- /nextjs-base-app/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/public/next.svg -------------------------------------------------------------------------------- /nextjs-base-app/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/public/vercel.svg -------------------------------------------------------------------------------- /nextjs-base-app/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/public/window.svg -------------------------------------------------------------------------------- /nextjs-base-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/nextjs-base-app/tsconfig.json -------------------------------------------------------------------------------- /ops/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/.gitignore -------------------------------------------------------------------------------- /ops/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/Caddyfile -------------------------------------------------------------------------------- /ops/app/frontend/.gitignore: -------------------------------------------------------------------------------- 1 | secret.yml -------------------------------------------------------------------------------- /ops/app/frontend/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/app/frontend/deployment.yml -------------------------------------------------------------------------------- /ops/app/frontend/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/app/frontend/service.yml -------------------------------------------------------------------------------- /ops/app/k8s-orchestrator/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/app/k8s-orchestrator/manifest.yml -------------------------------------------------------------------------------- /ops/app/k8s-orchestrator/service_account.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ops/app/primary-backend/.gitignore: -------------------------------------------------------------------------------- 1 | secret.ymll -------------------------------------------------------------------------------- /ops/app/primary-backend/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/app/primary-backend/deployment.yml -------------------------------------------------------------------------------- /ops/app/primary-backend/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/app/primary-backend/service.yml -------------------------------------------------------------------------------- /ops/caddy.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ops/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/deployment.yml -------------------------------------------------------------------------------- /ops/monitoring/grafana-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/monitoring/grafana-values.yaml -------------------------------------------------------------------------------- /ops/monitoring/primary-backend-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/monitoring/primary-backend-servicemonitor.yaml -------------------------------------------------------------------------------- /ops/monitoring/prometheus-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/monitoring/prometheus-values.yaml -------------------------------------------------------------------------------- /ops/monitoring/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/monitoring/script.sh -------------------------------------------------------------------------------- /ops/pod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/pod.yml -------------------------------------------------------------------------------- /ops/reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/reset.sh -------------------------------------------------------------------------------- /ops/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/ops/script.sh -------------------------------------------------------------------------------- /react-base-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/.gitignore -------------------------------------------------------------------------------- /react-base-app/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/components.json -------------------------------------------------------------------------------- /react-base-app/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/eslint.config.js -------------------------------------------------------------------------------- /react-base-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/index.html -------------------------------------------------------------------------------- /react-base-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/package-lock.json -------------------------------------------------------------------------------- /react-base-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/package.json -------------------------------------------------------------------------------- /react-base-app/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/public/vite.svg -------------------------------------------------------------------------------- /react-base-app/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /react-base-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/src/App.tsx -------------------------------------------------------------------------------- /react-base-app/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/src/assets/react.svg -------------------------------------------------------------------------------- /react-base-app/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/src/components/ui/button.tsx -------------------------------------------------------------------------------- /react-base-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/src/index.css -------------------------------------------------------------------------------- /react-base-app/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/src/lib/utils.ts -------------------------------------------------------------------------------- /react-base-app/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/src/main.tsx -------------------------------------------------------------------------------- /react-base-app/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /react-base-app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/tsconfig.app.json -------------------------------------------------------------------------------- /react-base-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/tsconfig.json -------------------------------------------------------------------------------- /react-base-app/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/tsconfig.node.json -------------------------------------------------------------------------------- /react-base-app/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code100x/mobile-magic/HEAD/react-base-app/vite.config.ts --------------------------------------------------------------------------------