Reputation: 6039
As far as I know # in typesafe config is used to comment things. Is there a way to escape it and use it a values? Say I want to have a parameter with value:
#
DB_PASSWORD=Yo,10#
Upvotes: 0
Views: 123
Reputation: 262494
That's what quotes are for:
DB_PASSWORD="Yo,10#"
Upvotes: 2