Skip to content

Commit

Permalink
Document relationship between vars and web login
Browse files Browse the repository at this point in the history
  • Loading branch information
0uep committed Jun 12, 2024
1 parent 71fd87e commit a4a5afe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/quid/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ const (
// defaultKey is AES-128-bits (16 bytes) in hexadecimal form (32 digits).
// Attention: Heroku generates secrets with 64 hexadecimal digits.
defaultKey = "00112233445566778899aabbccddeeff"
defaultAdminUsr = "admin"
defaultAdminPwd = "myAdminPassword"
defaultDBUser = "pguser"
defaultDBPass = "myDBpwd"
defaultDBName = "quid"
defaultDBHost = "localhost"
defaultDBPort = "5432"
defaultDBName = "quid" // Web login: namespace
defaultAdminUsr = "admin" // Web login: username
defaultAdminPwd = "myAdminPassword" // Web login: password
defaultOrigins = "http://localhost:"
)

Expand Down

0 comments on commit a4a5afe

Please sign in to comment.