Skip to content

Commit

Permalink
fix(engine): revert accidental env file rename
Browse files Browse the repository at this point in the history
  • Loading branch information
steebchen committed Jul 13, 2023
1 parent 6ab8d70 commit 5a37726
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions engine/lifecycle.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ import (
func (e *QueryEngine) Connect() error {
logger.Debug.Printf("ensure query engine binary...")

_ = godotenv.Load("e2e.env")
_ = godotenv.Load("db/e2e.env")
_ = godotenv.Load("prisma/e2e.env")
_ = godotenv.Load(".env")
_ = godotenv.Load("db/.env")
_ = godotenv.Load("prisma/.env")

startEngine := time.Now()

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
schema.out.prisma

# ignore local env file to run e2e tests
e2e.env
.env

0 comments on commit 5a37726

Please sign in to comment.