rename LOCAL_DSN to DEV_DSN

This commit is contained in:
lyx0 2023-10-14 14:12:01 +02:00
parent ee15ec9c1b
commit 7f6496e434

View file

@ -80,7 +80,7 @@ func main() {
switch envFlag {
case "dev":
cfg.db.dsn = os.Getenv("LOCAL_DSN")
cfg.db.dsn = os.Getenv("DEV_DSN")
case "prod":
cfg.db.dsn = os.Getenv("REMOTE_DSN")
}