Skip to content

Commit

Permalink
add print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
timothy-lew committed Dec 30, 2024
1 parent 7a6fac6 commit 81e3c80
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@
# Load environment variables from .env file
load_dotenv()
# Get the database URL from environment variables
print("in database.py")
DB_URL_LOCAL = os.getenv("DB_URL_LOCAL")
DB_DRIVER_DEV = os.getenv("DB_DRIVER_DEV")
DB_SERVER_DEV = os.getenv("DB_SERVER_DEV")
print("DB_SERVER_DEV", DB_DRIVER_DEV)
DB_DATABASE_DEV = os.getenv("DB_DATABASE_DEV")
DB_DATABASE_PORT = os.getenv("DB_DATABASE_PORT")
DB_USERNAME_DEV = os.getenv("DB_USERNAME_DEV")
Expand Down

0 comments on commit 81e3c80

Please sign in to comment.