{"id":50712016,"url":"https://github.com/developerdavid2/neuralpay","last_synced_at":"2026-06-09T16:03:43.425Z","repository":{"id":355086894,"uuid":"1224899125","full_name":"developerdavid2/neuralpay","owner":"developerdavid2","description":"AI-powered financial intelligence platform that connects to your existing bank accounts (read-only) and gives you a clear, AI-driven picture of your financial health. ","archived":false,"fork":false,"pushed_at":"2026-05-30T15:31:09.000Z","size":926,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-30T16:12:45.596Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/developerdavid2.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-29T18:38:35.000Z","updated_at":"2026-05-30T15:31:15.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/developerdavid2/neuralpay","commit_stats":null,"previous_names":["developerdavid2/neuralpay"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/developerdavid2/neuralpay","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developerdavid2%2Fneuralpay","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developerdavid2%2Fneuralpay/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developerdavid2%2Fneuralpay/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developerdavid2%2Fneuralpay/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/developerdavid2","download_url":"https://codeload.github.com/developerdavid2/neuralpay/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developerdavid2%2Fneuralpay/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34114447,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-09T16:03:42.773Z","updated_at":"2026-06-09T16:03:43.417Z","avatar_url":"https://github.com/developerdavid2.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# neuralpay\n\nThis project was created with [Better-T-Stack](https://github.com/AmanVarshney01/create-better-t-stack), a modern TypeScript stack that combines Next.js, Express, TRPC, and more.\n\n## Features\n\n- **TypeScript** - For type safety and improved developer experience\n- **Next.js** - Full-stack React framework\n- **TailwindCSS** - Utility-first CSS for rapid UI development\n- **Shared UI package** - shadcn/ui primitives live in `packages/ui`\n- **Express** - Fast, unopinionated web framework\n- **tRPC** - End-to-end type-safe APIs\n- **Bun** - Runtime environment\n- **Drizzle** - TypeScript-first ORM\n- **PostgreSQL** - Database engine\n- **Authentication** - Better-Auth\n- **Husky** - Git hooks for code quality\n- **Turborepo** - Optimized monorepo build system\n\n## Getting Started\n\nFirst, install the dependencies:\n\n```bash\nbun install\n```\n\n## Database Setup\n\nThis project uses PostgreSQL with Drizzle ORM.\n\n1. Make sure you have a PostgreSQL database set up.\n2. Update your `apps/server/.env` file with your PostgreSQL connection details.\n\n3. Apply the schema to your database:\n\n```bash\nbun run db:push\n```\n\nThen, run the development server:\n\n```bash\nbun run dev\n```\n\nOpen [http://localhost:3001](http://localhost:3001) in your browser to see the web application.\nThe API is running at [http://localhost:3000](http://localhost:3000).\n\n## UI Customization\n\nReact web apps in this stack share shadcn/ui primitives through `packages/ui`.\n\n- Change design tokens and global styles in `packages/ui/src/styles/globals.css`\n- Update shared primitives in `packages/ui/src/components/*`\n- Adjust shadcn aliases or style config in `packages/ui/components.json` and `apps/web/components.json`\n\n### Add more shared components\n\nRun this from the project root to add more primitives to the shared UI package:\n\n```bash\nnpx shadcn@latest add accordion dialog popover sheet table -c packages/ui\n```\n\nImport shared components like this:\n\n```tsx\nimport { Button } from \"@neuralpay/ui/components/button\";\n```\n\n### Add app-specific blocks\n\nIf you want to add app-specific blocks instead of shared primitives, run the shadcn CLI from `apps/web`.\n\n## Git Hooks and Formatting\n\n- Initialize hooks: `bun run prepare`\n\n## Project Structure\n\n```\nneuralpay/\n├── apps/\n│   ├── web/         # Frontend application (Next.js)\n│   └── server/      # Backend API (Express, TRPC)\n├── packages/\n│   ├── ui/          # Shared shadcn/ui components and styles\n│   ├── api/         # API layer / business logic\n│   ├── auth/        # Authentication configuration \u0026 logic\n│   └── db/          # Database schema \u0026 queries\n```\n\n## Available Scripts\n\n- `bun run dev`: Start all applications in development mode\n- `bun run build`: Build all applications\n- `bun run dev:web`: Start only the web application\n- `bun run dev:server`: Start only the server\n- `bun run check-types`: Check TypeScript types across all apps\n- `bun run db:push`: Push schema changes to database\n- `bun run db:generate`: Generate database client/types\n- `bun run db:migrate`: Run database migrations\n- `bun run db:studio`: Open database studio UI\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeveloperdavid2%2Fneuralpay","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeveloperdavid2%2Fneuralpay","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeveloperdavid2%2Fneuralpay/lists"}