Skip to content

Commit

Permalink
Update database URL in UsersRepository
Browse files Browse the repository at this point in the history
  • Loading branch information
fjpacheco committed Mar 3, 2024
1 parent d11255a commit d2f629b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/repository/Users.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class UsersRepository:
db_url = environ.get("HEROKU_DATABASE_URL", engine.URL.create(
db_url = environ.get("DATABASE_URL", engine.URL.create(
"postgres",
database=environ.get("USERS_DB", "users"),
username=environ.get("POSTGRES_USER", "user"),
Expand Down

0 comments on commit d2f629b

Please sign in to comment.