cusdis icon indicating copy to clipboard operation
cusdis copied to clipboard

Include hint for PostgreSQL pw in self-hosted instruction

Open macntech opened this issue 2 years ago • 1 comments

In the self hosted instruction under https://cusdis.com/doc#/self-host/vercel we should include a hint for PostgreSQL passwort that it should not contain any special character, especially '@'. This character will lead to build fail on Vercel as the @ will be interpreted as host prefix.

Example: Postgresql passwort 12345w@erf in connection string will lead to error:

Bildschirmfoto 2021-12-23 um 17 05 04

Another option would be to give users the hint to encode special character in the connection string as per https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING

Example: Postgresql passwort '12345w@erf' would be '12345w%40erf' in the connection string.

We could also do the character substitution in the execution code.

macntech avatar Dec 24 '21 10:12 macntech

Thank you macntech. Could you help us update the doc?

djyde avatar Dec 28 '21 03:12 djyde