Skip to content

Commit

Permalink
add gcp configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
SalmanAsh committed Aug 1, 2024
1 parent 6f12cab commit 901cd0c
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,17 @@
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent

DATABASES = get_databases(BASE_DIR)
# DATABASES = get_databases(BASE_DIR)
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql",
"NAME": "development",
"USER": "postgres",
"PASSWORD": "", ###
"HOST": "127.0.0.1",
"PORT": "5432",
}
}


STATIC_ROOT = get_static_root(BASE_DIR)

0 comments on commit 901cd0c

Please sign in to comment.