Fork of github.com/did-method-plc/did-method-plc
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

change 0.0.0.0 to localhost

authored by

Miles Zimmerman and committed by
bnewbold
44bb31a1 8b2b0f31

+1 -1
+1 -1
packages/server/service/index.js
··· 30 30 }) 31 31 } 32 32 33 - const pgUrl = ({ username = "postgres", password = "postgres", host = "0.0.0.0", port = "5432", database = "postgres", sslmode }) => { 33 + const pgUrl = ({ username = "postgres", password = "postgres", host = "localhost", port = "5432", database = "postgres", sslmode }) => { 34 34 const enc = encodeURIComponent 35 35 return `postgresql://${username}:${enc(password)}@${host}:${port}/${database}${sslmode ? `?sslmode=${enc(sslmode)}` : ''}` 36 36 }