Everyone1 loves SQLite, because it’s simple, fast, and in-process, meaning you don’t need a long-lived service running or, *shudders*, Docker Desktop. It’s common for ORMs to work out-of-the-box with SQLite, so you can start fiddling around before getting a proper database set up. It’s also somewhat common/encouraged to use it in tests, where a “real” database isn’t available. However, this ...