The issue is manual commenting and uncommenting of the database configs while pushing to production.
We don't want that, instead its should be automatic.
THIS IS THE FILE YOU WILL UPDATE: https://github.com/ma-za-kpe/linky_project/blob/main/linky_api/settings.py
Database
DATABASES = {
# 'default': {
# 'ENGINE': 'django.db.backends.sqlite3',
# 'NAME': BASE_DIR / 'db.sqlite3',
# }
'default': dj_database_url.config(
# Replace this value with your local database's connection string.
default= os.environ.get('DATABASE_URL'),
conn_max_age=600
)
}
The issue is manual commenting and uncommenting of the database configs while pushing to production.
We don't want that, instead its should be automatic.
THIS IS THE FILE YOU WILL UPDATE: https://github.com/ma-za-kpe/linky_project/blob/main/linky_api/settings.py
Database
https://docs.djangoproject.com/en/5.0/ref/settings/#databases
DATABASES = {
# 'default': {
# 'ENGINE': 'django.db.backends.sqlite3',
# 'NAME': BASE_DIR / 'db.sqlite3',
# }
}