You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd.Flags().BoolP("read-from-env", "e", false, "If set, reads the database connection string from the environment variable DSN or config file key dsn.")
24
26
cmd.Flags().Bool("block", false, "Block until all migrations have been applied")
Copy file name to clipboardExpand all lines: driver/factory.go
+13-4Lines changed: 13 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@ package driver
5
5
6
6
import (
7
7
"context"
8
+
"io/fs"
8
9
9
10
"github.com/ory/hydra/v2/driver/config"
10
11
"github.com/ory/x/configx"
@@ -22,7 +23,10 @@ type (
22
23
// The first default refers to determining the NID at startup; the second default referes to the fact that the Contextualizer may dynamically change the NID.
0 commit comments