deploy/styles.tsx
the test function k8sTestStyle()
has a mockDbName and mockDataPath... is this a functioning db I can read and write to? Not sure how to connect to it, or id I have to do a prod deploy for postgres to work.
k8sTestStyle
is a fully functioning postgres database that should work just fine for development and testing purposes. BUT, it's not deployed in a way that's suitable for production. It does not create any persistent storage, so when you destroy your deployment, you destroy your data too (just like you'd typically want for dev or testing). That style also is able to pre-load data from a .sql file or files, which is what mockDataPath is.