logoalt Hacker News

whilenot-devyesterday at 8:19 AM1 replyview on HN

> This will create a config file for local and prod databases using sqlite for local and postgres for prod.

Hold on, people actually do that? I thought it's trivial to run your database in a container locally.


Replies

deweyyesterday at 10:21 AM

Especially if you use any of the features that make Postgres nice to work with (For example good jsonb handling) these are immediately different than on sqlite and then won't work for development. Don't think there's a good reason for not running the same DB in both environments.

show 1 reply