Skip to content

Commit

Permalink
Update settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfonsecaa authored Jun 10, 2024
1 parent f5f71a2 commit 8fc41fb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions driverplan/driverplan/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'driverplan_db',
'USER': 'admin',
'PASSWORD': 'kYDTjmsG8b2D8t1jycIhFZkjPBKYlpTw',
'HOST': 'dpg-cpjii2acn0vc73ampkg0-a.oregon-postgres.render.com',
'PORT': '5432',
'ENGINE': os.getenv('DB_ENGINE', 'change-me'),
'NAME': os.getenv('POSTGRES_DB', 'change-me'),
'USER': os.getenv('POSTGRES_USER', 'change-me'),
'PASSWORD': os.getenv('POSTGRES_PASSWORD', 'change-me'),
'HOST': os.getenv('POSTGRES_HOST', 'change-me'),
'PORT': os.getenv('POSTGRES_PORT', 'change-me'),
}
}

Expand Down

0 comments on commit 8fc41fb

Please sign in to comment.