Skip to content

Commit

Permalink
Revert DB config
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbarnes committed Dec 17, 2024
1 parent b3a2742 commit c770292
Showing 1 changed file with 27 additions and 15 deletions.
42 changes: 27 additions & 15 deletions fbr/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,24 +113,36 @@

DATABASES: dict = {"default": {}}

if DATABASE_URL := env("DATABASE_URL", default=None):
# Use DATABASE_URL for local development if available in local.env
DATABASES["default"] = dj_database_url.parse(
DATABASE_URL,
engine="postgresql",
)
elif DATABASE_CREDENTIALS := env("DATABASE_CREDENTIALS", default=None):
# Use DATABASE_CREDENTIALS (server) for deployed environments
if DATABASE_URL := env("DATABASE_CREDENTIALS", default=None):
DATABASES["default"] = dj_database_url.config(
default=database_url_from_env(DATABASE_CREDENTIALS)
default=database_url_from_env("DATABASE_CREDENTIALS")
)
DATABASES["default"]["ENGINE"] = "django.db.backends.postgresql"
else:
# Empty configuration to allow the codebuild to run without DB config
DATABASES["default"] = dj_database_url.parse("", engine="postgresql")

# Ensure the ENGINE is set correctly
DATABASES["default"]["ENGINE"] = "django.db.backends.postgresql"

DATABASES["default"] = dj_database_url.parse(
"",
engine="postgresql",
)
DATABASES["default"]["ENGINE"] = "django.db.backends.postgresql"


# if DATABASE_URL := env("DATABASE_URL", default=None):
# # Use DATABASE_URL for local development if available in local.env
# DATABASES["default"] = dj_database_url.parse(
# DATABASE_URL,
# engine="postgresql",
# )
# elif DATABASE_CREDENTIALS := env("DATABASE_CREDENTIALS", default=None):
# # Use DATABASE_CREDENTIALS (server) for deployed environments
# DATABASES["default"] = dj_database_url.config(
# default=database_url_from_env(DATABASE_CREDENTIALS)
# )
# else:
# # Empty configuration to allow the codebuild to run without DB config
# DATABASES["default"] = dj_database_url.parse("", engine="postgresql")

# # Ensure the ENGINE is set correctly
# DATABASES["default"]["ENGINE"] = "django.db.backends.postgresql"

AUTH_PASSWORD_VALIDATORS = [
{
Expand Down

0 comments on commit c770292

Please sign in to comment.