Posts

Showing posts from April, 2026

Claude UltraPlan

Image
https://www.youtube.com/watch?v=MIdKddA6vU4 see plan on web

NPM Eresolve

Why is this happening? NPM's "ERESOLVE" errors happen when two packages want different versions of the same library. better-auth is specifically looking for drizzle-orm version 0.45.2 . If your project already has a different version (like 0.44.x or 0.46.x ), or if another package is pulling in a different version, npm halts the installation to prevent potential runtime crashes.

Git Configure Multiple User

Image
https://www.youtube.com/watch?v=KO4cMC-NrxM generate 2 SSH keys for 2 github accounts , use different email ids for different accounts list them Goto Profile > Settings & add key in github.com This discrepancy happens because of the way Git separates who wrote the code (metadata) from who uploaded the code (GitHub account). Why the names don't match Local Git Config vs. GitHub Account: When you commit code on your computer, Git attaches the user.name and user.email stored in your local settings to that commit. It doesn't matter which GitHub account you use to push the code; GitHub simply reads the "Author" and "Committer" tags already embedded in the files. Why the name appears twice: GitHub shows "Name and Name" when the Author and the Committer fields are both present but GitHub isn't 100% sure they are the same verified GitHub user. This often happens if the email used in the local config isn't verified on the GitHub acco...

Make SAAS : Add Payments

Image
https://www.youtube.com/watch?v=E_dKWAq5M7w&list=PL4HikwTaYE0F40LZ_fZ1RXoxLrJyceKCu&index=1 Why using Polar not stripe ? available in many countries is also book of records , can be used for tax purposes 03:15 Next Steps Save the implementation plan execute it phase wise

Make Saas : Authn & Autz

Image
Why Better-Auth is best ? https://better-auth.com/docs/authentication/polar easy integration with polar / stripe easy integration with nextJS with stripe you will have to maintain a user record in your database with a link to a user record stripe with better auth it manages user in both sys automatically It is open source and free this one is a paid service  https://clerk.com/billing  (advance functionality like org and teams are paid) user data would be stored in the clerk system. In an unlikely event if they shut down, you lose your data. So you will have to keep a copy of it. create files like "nextjs-integration.md" & "installation.md" with instructions for same this will be used for integration later 08:00 Context7 is a free Model Context Protocol (MCP) server designed to provide up-to-date, version-specific documentation for LLMs and AI code editors like Cursor and Windsurf. Developed by Upstash, it prevents AI models from using outdated training data by ...

Make a SAAS : Feature Planning

Image
https://www.youtube.com/watch?v=ru-kAPU9hdk There are tools like https://github.com/github/spec-kit   https://github.com/Fission-AI/OpenSpec   https://github.com/bmad-code-org/BMAD-METHOD 1 & 2 are very similar , they focus on implementation side of things. You give it high level description of what you are trying to implement. These workflows will guide you through the implementation process. They will help in planning changes and creating detailed implementation plans BMAD is bit more involved. real power is doing full planning before implementation. It helps brainstorm idea. do not necessarily use it. you may have to spend a lot of time planning. He likes to plan UI Features first PLAN check context window , quality starts degrading at 60% utilization Please create a sub folder in the specs folder for this specific feature with in a folder. Create two files requirements.MD and implementation plan.MD the requirements file to contain our initial requirements with any othe...

Using Claude to make SAAS : CI CD

Image
 ok https://www.youtube.com/watch?v=BQWBz_Xj-E8&list=PL4HikwTaYE0F40LZ_fZ1RXoxLrJyceKCu&index=6 01:45 Vercel Use it for deploying NetxJS Application. Vercel is a cloud platform designed for frontend developers to build, preview, and deploy websites and web applications with zero infrastructure configuration. It is best known as the creator of Next.js and specializes in serverless computing, edge functions, and rapid deployment of JavaScript frameworks 02:35 1) create account in vercel 2) connect your github account 3) find ur repo and click on import 4) add all env variables from .env file to github 5) create a PostgresDB in Vercel and use its keys in env file 6) click deploy to see db tables , click on storage , click neon , click tables we get a domain for our project as well If u click on sign in , nothing happens , add the domain google cloud platorm Can update domains ( he used cloudfare) it will now generate SSL cert k

Using Claude Code to make SAAS

Image
  https://www.youtube.com/watch?v=pZzQOMNmx4c&list=LL&index=1 Use  https://www.inngest.com/ for workflows management , like long running processes & checklogs Payment processing  https://polar.sh/ has adming page https://posthog.com/  : Product analytics like pendo these products are open soufce , you can self host and use them for freee , free tier is generus can easily launch MVP https://www.youtube.com/watch?v=JQ86N3WOAh4 Tech Stack https://nextjs.org/ (react framework) : used for front end and back end both UI components :  https://ui.shadcn.com/   user authentication  https://better-auth.com/   database  https://www.postgresql.org/  (vector embeddings , full text search) https://ai-sdk.dev/ : AI functionality , AI library  https://openrouter.ai/   starter project https://github.com/leonvanzyl/agentic-coding-starter-kit NPM vs NPX https://stackoverflow.com/questions/50605219/difference-between-npx-and-npm ope...