What database do you prefer as a user of a self-hosted app?
I want to support only one for
#OxiTraffic
PostgreSQL is much more flexible and powerful from a developer point of view. It can also scale much better just in case.
But SQLite does not require additional hosting. It is one file that can be automatically created by the app itself.
Comments on your choice are appreciated
@mo8it sure SQLite is great for many cases, but if you only want to support only one, i would say something that does scale better and support more cases like PostgreSQL is better, unless you are really sure that SQLite will always be enough for this particular case.