I've got a connection string in my .env file. When...
# orm-help
j
I've got a connection string in my .env file. Whenever I save the file, a "\" is getting added in front of an * that is part of the connection string, which makes the connection string invalid. Anybody know what might be causing this behavior? Should be:
hostNameInCertificate=*.database
but when I save it becomes
hostNameInCertificate=\*.database
r
Try
hostNameInCertificate='*.database'
This is not a Prisma issue but dotEnv See: https://github.com/bkeepers/dotenv/issues/267