Skip to content

Commit

Permalink
reverting settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
y3pio committed Feb 5, 2025
1 parent 3279911 commit 8e7b9aa
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions mysite/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,33 +90,33 @@
# Database
# https://docs.djangoproject.com/en/5.1/ref/settings/#databases

# JawsDB config for deployed app.
# DATABASES = {
# 'default': dj_database_url.config(conn_max_age=600)
# }

# Custom DB settings for local DB.
# Testing with JawsDB.
DATABASES = {
# 'default': {
# 'ENGINE': 'django.db.backends.mysql',
# 'NAME': 'heroku_4ac11fb2946b4e7',
# 'USER': 'be05ffb901b132',
# 'PASSWORD': '3d94000c',
# 'HOST': 'us-cdbr-east-03.cleardb.com',
# # 'OPTIONS': {'ssl_mode': 'DISABLED'}
# 'TEST': {
# 'MIRROR': 'default',
# },
# },
'default': {
'ENGINE': 'django.db.backends.mysql', # Or other DBs as needed.
'NAME': 'ponder',
'USER': 'root',
'PASSWORD': 'ponderlab',
'HOST': '127.0.0.1',
}
'default': dj_database_url.config(conn_max_age=600)
}

# Custom DB config.
# DATABASES = {
# # 'default': {
# # 'ENGINE': 'django.db.backends.mysql',
# # 'NAME': 'heroku_4ac11fb2946b4e7',
# # 'USER': 'be05ffb901b132',
# # 'PASSWORD': '3d94000c',
# # 'HOST': 'us-cdbr-east-03.cleardb.com',
# # # 'OPTIONS': {'ssl_mode': 'DISABLED'}
# # 'TEST': {
# # 'MIRROR': 'default',
# # },
# # },
# 'default': {
# 'ENGINE': 'django.db.backends.mysql', # Or other DBs as needed.
# 'NAME': '<LOCAL_DB_DATABASE_NAME>',
# 'USER': '<LOCAL_DB_USER>',
# 'PASSWORD': '<LOCAL_DB_PASSWORD>',
# 'HOST': '127.0.0.1',
# }
# }


# Password validation
# https://docs.djangoproject.com/en/5.1/ref/settings/#auth-password-validators
Expand Down

0 comments on commit 8e7b9aa

Please sign in to comment.