Skip to content

Commit

Permalink
Move dev env variables to appsettings.Development.json
Browse files Browse the repository at this point in the history
  • Loading branch information
i-vukman committed Oct 14, 2023
1 parent 049da05 commit f725d8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/AnagramSolver/appsettings.Development.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@
"Microsoft.Hosting.Lifetime": "Information"
}
},
"CONNECTION_STRING": "User ID=postgres;Password=postgres;Server=localhost;Port=5432;Database=anagram_solver;Integrated Security=true;Pooling=true;"
"CONNECTION_STRING": "User ID=postgres;Password=postgres;Server=localhost;Port=5432;Database=anagram_solver;Integrated Security=true;Pooling=true;",
"ADMIN_USERNAME": "admin",
"ADMIN_PASSWORD": "admin"
}
4 changes: 1 addition & 3 deletions src/AnagramSolver/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,5 @@
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"ADMIN_USERNAME": "admin",
"ADMIN_PASSWORD": "admin"
"AllowedHosts": "*"
}

0 comments on commit f725d8a

Please sign in to comment.