chore: drop env prefixed config vars

This commit is contained in:
2025-09-12 22:39:32 -05:00
parent 14b02df8f4
commit 752c855dec
3 changed files with 10 additions and 11 deletions

View File

@@ -32,8 +32,7 @@ async fn main() {
// Load configuration first to get log level
let config: Config = Figment::new()
.merge(Env::raw().only(&["DATABASE_URL"]))
.merge(Env::prefixed("APP_"))
.merge(Env::raw())
.extract()
.expect("Failed to load config");