I've been trying out Pocketbase on a side project idea. I'm super impressed! Having worked for many years on Django projects, Pocketbase seems like a perfect fit for those small to medium sized projects for which you don't want to create and maintain a traditional backend for. Happy to answer any questions.
Django has great GIS integration. How does Pocketbase compare here ? Also, can Pocketbase work with PostgreSQL or is it SQLite only ?
Pocketbase – open-source realtime back end in 1 file
81–90 of 211 posts
Re: Pocketbase – open-source realtime back end in 1 file
#82I love it and use it for personal projects and internal tools. I tend to combine it with https://pocketpages.dev/ which gives me file-based routing and nice templates. Ah, and Pocketbase has automatic database migrations, so all schema modifications can go into version control. I even hacked a Gemini protocol server into it, so that I can browse my personal knowledge graph using Lagrange.
What is Lagrange? I couldn’t find any project in the context of LLM or knowledge graph.
I’m guessing that’s what they refer to.
Re: Pocketbase – open-source realtime back end in 1 file
#83I've been trying out Pocketbase on a side project idea. I'm super impressed! Having worked for many years on Django projects, Pocketbase seems like a perfect fit for those small to medium sized projects for which you don't want to create and maintain a traditional backend for. Happy to answer any questions.
How easily can I migrate from an existing sqlite-based backend?
Therefore if it was me, I would use the Admin UI to create a new db with a similar data structure, and then use a third-party tool to select data and insert into the new database.
Re: Pocketbase – open-source realtime back end in 1 file
#84I love it and use it for personal projects and internal tools. I tend to combine it with https://pocketpages.dev/ which gives me file-based routing and nice templates. Ah, and Pocketbase has automatic database migrations, so all schema modifications can go into version control. I even hacked a Gemini protocol server into it, so that I can browse my personal knowledge graph using Lagrange.
What is Lagrange? I couldn’t find any project in the context of LLM or knowledge graph.
Re: Pocketbase – open-source realtime back end in 1 file
#85I would love something similar but for frontend. I like developing backends, but writing JavaScript is to tiring.
Re: Pocketbase – open-source realtime back end in 1 file
#86I've been trying out Pocketbase on a side project idea. I'm super impressed! Having worked for many years on Django projects, Pocketbase seems like a perfect fit for those small to medium sized projects for which you don't want to create and maintain a traditional backend for. Happy to answer any questions.
I’ve been using on a personal side project - but found that LLMs seem to be permanently confused over how to interact with pocketbase - to the point where I’ve even tried creating a Claude Skill to try and reduce the confusion. Wondering if anyone else has had a similar experience?
Re: Pocketbase – open-source realtime back end in 1 file
#87Re: Pocketbase – open-source realtime back end in 1 file
#88I would love something similar but for frontend. I like developing backends, but writing JavaScript is to tiring.
Re: Pocketbase – open-source realtime back end in 1 file
#89Postbase uses PostgreSQL and BetterAuth. No GUI yet, but it's in the plan and will be called Admin (Panel). I had the same instinct of using SQLite, but then, after a bit of research, PostgreSQL seemed a better alternative for serious projects.
Mostly all code is ChatGPT generated but manually tested by human.”
Re: Pocketbase – open-source realtime back end in 1 file
#90Is this really realtime? From looking at the description it sounds more like subscriptions to events of data changes that are dispatched close to the data operation How would realtime even work for a networked system going over tcp? https://en.wikipedia.org/wiki/Real-time_computing
Realtime in tech is considered in timespans with short delays allowed, last time i have read about it it was like 100ms.
Your average RT software has an average of 10 to 30 ms delay between operations. Performs tasks in the order of nanoseconds.