├── .dockerignore ├── .gitignore ├── .rgignore ├── README.md ├── apps ├── api │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── routes │ │ └── index.ts │ ├── sst-env.d.ts │ ├── tsconfig.json │ └── utils │ │ └── auth.ts ├── mobile │ ├── .gitignore │ ├── README.md │ ├── 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 │ ├── metro.config.js │ ├── package.json │ ├── scripts │ │ └── reset-project.js │ ├── sst-env.d.ts │ └── tsconfig.json └── platform │ ├── .gitignore │ ├── README.md │ ├── app │ ├── actions.ts │ ├── api │ │ ├── auth │ │ │ └── user │ │ │ │ └── route.ts │ │ ├── callback │ │ │ └── route.ts │ │ └── reviews │ │ │ └── route.ts │ ├── auth.ts │ ├── checkout │ │ ├── route.ts │ │ └── success │ │ │ └── page.tsx │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ ├── robots.ts │ └── sitemap.ts │ ├── components.json │ ├── components │ ├── architecture-section.tsx │ ├── assets │ │ └── icons │ │ │ ├── polar.tsx │ │ │ └── sst.tsx │ ├── demo-section.tsx │ ├── features-section.tsx │ ├── footer.tsx │ ├── hero-section.tsx │ ├── navbar.tsx │ ├── payment-section.tsx │ ├── review-form.tsx │ ├── reviews-list.tsx │ ├── reviews-section.tsx │ ├── technical-section.tsx │ ├── theme-toggle.tsx │ └── ui │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dropdown-menu.tsx │ │ └── textarea.tsx │ ├── eslint.config.mjs │ ├── lib │ ├── polar-products.ts │ └── utils.ts │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── providers │ ├── auth-provider.tsx │ └── theme-provider.tsx │ ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── file.svg │ ├── globe.svg │ ├── next.svg │ ├── og-image.jpg │ ├── site.webmanifest │ ├── vercel.svg │ └── window.svg │ ├── sst-env.d.ts │ └── tsconfig.json ├── assets └── stackforge.png ├── bun.lock ├── drizzle.config.ts ├── drizzle ├── 0000_cool_mauler.sql ├── 0001_peaceful_night_nurse.sql └── meta │ ├── 0000_snapshot.json │ ├── 0001_snapshot.json │ └── _journal.json ├── index.ts ├── infra ├── api.ts ├── auth.ts ├── cluster.ts ├── database.ts ├── domains.ts ├── expo.ts ├── orm.ts ├── platform.ts ├── secrets.ts ├── vpc.ts └── webhook.ts ├── package.json ├── packages ├── core │ ├── auth │ │ └── subjects.ts │ ├── db │ │ ├── index.ts │ │ ├── schema │ │ │ ├── index.ts │ │ │ ├── reviews.ts │ │ │ └── users.ts │ │ ├── seed │ │ │ └── index.ts │ │ └── types.ts │ ├── package.json │ ├── sst-env.d.ts │ └── utils │ │ └── stage.ts └── functions │ ├── auth │ └── handler.ts │ ├── package.json │ └── sst-env.d.ts ├── sst-env.d.ts ├── sst.config.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- 1 | 2 | # sst 3 | .sst -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/.gitignore -------------------------------------------------------------------------------- /.rgignore: -------------------------------------------------------------------------------- 1 | .sst 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/README.md -------------------------------------------------------------------------------- /apps/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/api/.gitignore -------------------------------------------------------------------------------- /apps/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/api/Dockerfile -------------------------------------------------------------------------------- /apps/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/api/README.md -------------------------------------------------------------------------------- /apps/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/api/index.ts -------------------------------------------------------------------------------- /apps/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/api/package.json -------------------------------------------------------------------------------- /apps/api/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/api/routes/index.ts -------------------------------------------------------------------------------- /apps/api/sst-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/api/sst-env.d.ts -------------------------------------------------------------------------------- /apps/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/api/tsconfig.json -------------------------------------------------------------------------------- /apps/api/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/api/utils/auth.ts -------------------------------------------------------------------------------- /apps/mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/.gitignore -------------------------------------------------------------------------------- /apps/mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/README.md -------------------------------------------------------------------------------- /apps/mobile/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/app.json -------------------------------------------------------------------------------- /apps/mobile/app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /apps/mobile/app/(tabs)/explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/app/(tabs)/explore.tsx -------------------------------------------------------------------------------- /apps/mobile/app/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/app/(tabs)/index.tsx -------------------------------------------------------------------------------- /apps/mobile/app/+not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/app/+not-found.tsx -------------------------------------------------------------------------------- /apps/mobile/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/app/_layout.tsx -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /apps/mobile/assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /apps/mobile/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/assets/images/favicon.png -------------------------------------------------------------------------------- /apps/mobile/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/assets/images/icon.png -------------------------------------------------------------------------------- /apps/mobile/assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /apps/mobile/assets/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/assets/images/react-logo.png -------------------------------------------------------------------------------- /apps/mobile/assets/images/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/assets/images/react-logo@2x.png -------------------------------------------------------------------------------- /apps/mobile/assets/images/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/assets/images/react-logo@3x.png -------------------------------------------------------------------------------- /apps/mobile/assets/images/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/assets/images/splash-icon.png -------------------------------------------------------------------------------- /apps/mobile/components/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/components/Collapsible.tsx -------------------------------------------------------------------------------- /apps/mobile/components/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/components/ExternalLink.tsx -------------------------------------------------------------------------------- /apps/mobile/components/HapticTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/components/HapticTab.tsx -------------------------------------------------------------------------------- /apps/mobile/components/HelloWave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/components/HelloWave.tsx -------------------------------------------------------------------------------- /apps/mobile/components/ParallaxScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/components/ParallaxScrollView.tsx -------------------------------------------------------------------------------- /apps/mobile/components/ThemedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/components/ThemedText.tsx -------------------------------------------------------------------------------- /apps/mobile/components/ThemedView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/components/ThemedView.tsx -------------------------------------------------------------------------------- /apps/mobile/components/__tests__/ThemedText-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/components/__tests__/ThemedText-test.tsx -------------------------------------------------------------------------------- /apps/mobile/components/__tests__/__snapshots__/ThemedText-test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/components/__tests__/__snapshots__/ThemedText-test.tsx.snap -------------------------------------------------------------------------------- /apps/mobile/components/ui/IconSymbol.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/components/ui/IconSymbol.ios.tsx -------------------------------------------------------------------------------- /apps/mobile/components/ui/IconSymbol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/components/ui/IconSymbol.tsx -------------------------------------------------------------------------------- /apps/mobile/components/ui/TabBarBackground.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/components/ui/TabBarBackground.ios.tsx -------------------------------------------------------------------------------- /apps/mobile/components/ui/TabBarBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/components/ui/TabBarBackground.tsx -------------------------------------------------------------------------------- /apps/mobile/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/constants/Colors.ts -------------------------------------------------------------------------------- /apps/mobile/hooks/useColorScheme.ts: -------------------------------------------------------------------------------- 1 | export { useColorScheme } from 'react-native'; 2 | -------------------------------------------------------------------------------- /apps/mobile/hooks/useColorScheme.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/hooks/useColorScheme.web.ts -------------------------------------------------------------------------------- /apps/mobile/hooks/useThemeColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/hooks/useThemeColor.ts -------------------------------------------------------------------------------- /apps/mobile/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/metro.config.js -------------------------------------------------------------------------------- /apps/mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/package.json -------------------------------------------------------------------------------- /apps/mobile/scripts/reset-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/scripts/reset-project.js -------------------------------------------------------------------------------- /apps/mobile/sst-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/sst-env.d.ts -------------------------------------------------------------------------------- /apps/mobile/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/mobile/tsconfig.json -------------------------------------------------------------------------------- /apps/platform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/.gitignore -------------------------------------------------------------------------------- /apps/platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/README.md -------------------------------------------------------------------------------- /apps/platform/app/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/app/actions.ts -------------------------------------------------------------------------------- /apps/platform/app/api/auth/user/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/app/api/auth/user/route.ts -------------------------------------------------------------------------------- /apps/platform/app/api/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/app/api/callback/route.ts -------------------------------------------------------------------------------- /apps/platform/app/api/reviews/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/app/api/reviews/route.ts -------------------------------------------------------------------------------- /apps/platform/app/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/app/auth.ts -------------------------------------------------------------------------------- /apps/platform/app/checkout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/app/checkout/route.ts -------------------------------------------------------------------------------- /apps/platform/app/checkout/success/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/app/checkout/success/page.tsx -------------------------------------------------------------------------------- /apps/platform/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/app/globals.css -------------------------------------------------------------------------------- /apps/platform/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/app/layout.tsx -------------------------------------------------------------------------------- /apps/platform/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/app/page.tsx -------------------------------------------------------------------------------- /apps/platform/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/app/robots.ts -------------------------------------------------------------------------------- /apps/platform/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/app/sitemap.ts -------------------------------------------------------------------------------- /apps/platform/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components.json -------------------------------------------------------------------------------- /apps/platform/components/architecture-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/architecture-section.tsx -------------------------------------------------------------------------------- /apps/platform/components/assets/icons/polar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/assets/icons/polar.tsx -------------------------------------------------------------------------------- /apps/platform/components/assets/icons/sst.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/assets/icons/sst.tsx -------------------------------------------------------------------------------- /apps/platform/components/demo-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/demo-section.tsx -------------------------------------------------------------------------------- /apps/platform/components/features-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/features-section.tsx -------------------------------------------------------------------------------- /apps/platform/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/footer.tsx -------------------------------------------------------------------------------- /apps/platform/components/hero-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/hero-section.tsx -------------------------------------------------------------------------------- /apps/platform/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/navbar.tsx -------------------------------------------------------------------------------- /apps/platform/components/payment-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/payment-section.tsx -------------------------------------------------------------------------------- /apps/platform/components/review-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/review-form.tsx -------------------------------------------------------------------------------- /apps/platform/components/reviews-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/reviews-list.tsx -------------------------------------------------------------------------------- /apps/platform/components/reviews-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/reviews-section.tsx -------------------------------------------------------------------------------- /apps/platform/components/technical-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/technical-section.tsx -------------------------------------------------------------------------------- /apps/platform/components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/theme-toggle.tsx -------------------------------------------------------------------------------- /apps/platform/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/ui/button.tsx -------------------------------------------------------------------------------- /apps/platform/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/ui/card.tsx -------------------------------------------------------------------------------- /apps/platform/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /apps/platform/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/components/ui/textarea.tsx -------------------------------------------------------------------------------- /apps/platform/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/eslint.config.mjs -------------------------------------------------------------------------------- /apps/platform/lib/polar-products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/lib/polar-products.ts -------------------------------------------------------------------------------- /apps/platform/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/lib/utils.ts -------------------------------------------------------------------------------- /apps/platform/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/next.config.ts -------------------------------------------------------------------------------- /apps/platform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/package.json -------------------------------------------------------------------------------- /apps/platform/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/postcss.config.mjs -------------------------------------------------------------------------------- /apps/platform/providers/auth-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/providers/auth-provider.tsx -------------------------------------------------------------------------------- /apps/platform/providers/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/providers/theme-provider.tsx -------------------------------------------------------------------------------- /apps/platform/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /apps/platform/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /apps/platform/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/public/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/platform/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/public/favicon-16x16.png -------------------------------------------------------------------------------- /apps/platform/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/public/favicon-32x32.png -------------------------------------------------------------------------------- /apps/platform/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/public/favicon.ico -------------------------------------------------------------------------------- /apps/platform/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/public/file.svg -------------------------------------------------------------------------------- /apps/platform/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/public/globe.svg -------------------------------------------------------------------------------- /apps/platform/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/public/next.svg -------------------------------------------------------------------------------- /apps/platform/public/og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/public/og-image.jpg -------------------------------------------------------------------------------- /apps/platform/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/public/site.webmanifest -------------------------------------------------------------------------------- /apps/platform/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/public/vercel.svg -------------------------------------------------------------------------------- /apps/platform/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/public/window.svg -------------------------------------------------------------------------------- /apps/platform/sst-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/sst-env.d.ts -------------------------------------------------------------------------------- /apps/platform/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/apps/platform/tsconfig.json -------------------------------------------------------------------------------- /assets/stackforge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/assets/stackforge.png -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/bun.lock -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /drizzle/0000_cool_mauler.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/drizzle/0000_cool_mauler.sql -------------------------------------------------------------------------------- /drizzle/0001_peaceful_night_nurse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/drizzle/0001_peaceful_night_nurse.sql -------------------------------------------------------------------------------- /drizzle/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/drizzle/meta/0000_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/drizzle/meta/0001_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/drizzle/meta/_journal.json -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- 1 | console.log("Hello via Bun!"); -------------------------------------------------------------------------------- /infra/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/infra/api.ts -------------------------------------------------------------------------------- /infra/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/infra/auth.ts -------------------------------------------------------------------------------- /infra/cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/infra/cluster.ts -------------------------------------------------------------------------------- /infra/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/infra/database.ts -------------------------------------------------------------------------------- /infra/domains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/infra/domains.ts -------------------------------------------------------------------------------- /infra/expo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/infra/expo.ts -------------------------------------------------------------------------------- /infra/orm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/infra/orm.ts -------------------------------------------------------------------------------- /infra/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/infra/platform.ts -------------------------------------------------------------------------------- /infra/secrets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/infra/secrets.ts -------------------------------------------------------------------------------- /infra/vpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/infra/vpc.ts -------------------------------------------------------------------------------- /infra/webhook.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/package.json -------------------------------------------------------------------------------- /packages/core/auth/subjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/packages/core/auth/subjects.ts -------------------------------------------------------------------------------- /packages/core/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/packages/core/db/index.ts -------------------------------------------------------------------------------- /packages/core/db/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/packages/core/db/schema/index.ts -------------------------------------------------------------------------------- /packages/core/db/schema/reviews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/packages/core/db/schema/reviews.ts -------------------------------------------------------------------------------- /packages/core/db/schema/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/packages/core/db/schema/users.ts -------------------------------------------------------------------------------- /packages/core/db/seed/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/core/db/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/packages/core/db/types.ts -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/sst-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/packages/core/sst-env.d.ts -------------------------------------------------------------------------------- /packages/core/utils/stage.ts: -------------------------------------------------------------------------------- 1 | export const DEPLOYED_STAGES = ["prod", "dev"]; 2 | -------------------------------------------------------------------------------- /packages/functions/auth/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/packages/functions/auth/handler.ts -------------------------------------------------------------------------------- /packages/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/packages/functions/package.json -------------------------------------------------------------------------------- /packages/functions/sst-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/packages/functions/sst-env.d.ts -------------------------------------------------------------------------------- /sst-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/sst-env.d.ts -------------------------------------------------------------------------------- /sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/sst.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitishxyz/stackforge/HEAD/tsconfig.json --------------------------------------------------------------------------------