connect to local postgres
Does anyone knows how to connect to a local pg with neon?
I tried:
And I get:
2 Replies
try this connection string
postgresql://postgres@localhost:5432/db
it's actually an issue with neon: https://github.com/neondatabase/serverless/issues/33#issuecomment-1634853042
GitHub
Any way to connect from localhost? · Issue #33 · neondatabase/serve...
I would like to use an offline local instance of postgress while developing on my computer, I'm trying something like this: import { neon, neonConfig } from '@neondatabase/serverless' i...