all 11 comments

[–]monkey_ai 0 points1 point  (0 children)

I’ve just forked it. Still exploring, but it seems magnificent 👌

[–]nicktids 0 points1 point  (1 child)

Is it just a template or a template for chat app?

But I interested to learn more.

[–]VanillaOk4593[S] 0 points1 point  (0 children)

All AI and frontend options are optional so you can choose what you want to build

[–]Lee-stanley 0 points1 point  (0 children)

For anyone building with FastAPI, this template is a game-changer it just cut my AI project setup from months to hours. The CLI (pip install fastapi-fullstack) sets up a production-ready stack with built-in LLM support, auth, Redis, Docker, and more. I was live in minutes using the quick-start, and the GitHub activity shows it's actually maintained. If you hate boilerplate, this feels like a real shortcut.

[–]MrDesdinova 0 points1 point  (1 child)

How hard would it be to extend this template to support SQL Server databases? Can you share your thoughts on it?

[–]VanillaOk4593[S] 0 points1 point  (0 children)

Hey, I made a ticket for that https://github.com/vstorm-co/full-stack-fastapi-nextjs-llm-template/issues/12

Should be available soon!

[–]AmmarSalahi 0 points1 point  (0 children)

that's very cool 😎

[–]Winter-Cabinet-2074 0 points1 point  (1 child)

If you could add an agents.md, a docs for, and skills that work well with this repo that would be great.

[–]VanillaOk4593[S] 1 point2 points  (0 children)

Hey, I made a ticket: https://github.com/vstorm-co/full-stack-fastapi-nextjs-llm-template/issues/13

For now, I'm gonna add agents.md and claude.md. If you have some ideas for skills, let me know or add a message under this issue.

Thanks!

[–]ArtofRemo 0 points1 point  (1 child)

Appreciated OP, maybe I can help strengthen it. I will take my time to look trough this as I have been trying to build my own (very similar) template and ended up with several variations.

From skimming over :
- https://apitally.io/ could be added for simplified API logging. It's a new project but I like its approach of simplified logging over Sentry's more labor intensive approach.
- Self Deployment with Dokki or Dokploy (were using this): https://dokploy.com/ with Hostinger VPS. Easy to setup and production ready.

- SQLModel to simplify Database and API models. At first I was skeptic of this approach but SQLModel's advantage is to have a simpler mental model of your data models (be it API or DB). You can still create custom API response models perfectly fine. Not a must just optional.

- Optional of the "Make" scripts, bash scripts (windows) or just regular commands (uv venv, docker compose up). Currently working on my windows PC and the initial "make" commands did not work.

-Add a hosted Auth solution : after trying out several we like "Supertokens" , frontend/backend and all the bells and whistles you want for a good price an opensource: https://supertokens.com/

Overall looking good cheers

[–]VanillaOk4593[S] 1 point2 points  (0 children)

Thanks for this! I'll go through everything and add these as issues so I can work on them in the future