Daniel
Daniel

Reputation: 6039

using in the Typesafe config file contents

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

Answers (1)

Thilo
Thilo

Reputation: 262494

That's what quotes are for:

DB_PASSWORD="Yo,10#"

Upvotes: 2

Related Questions