Skip to content

DATABASE: PRODUCTION AND LOCAL #19

@ma-za-kpe

Description

@ma-za-kpe

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',
# }

'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
) 

}

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions