79504473

Date: 2025-03-12 17:55:12
Score: 4
Natty:
Report link

I have the same question. Basically I need to add a new entry to databases dictionary and be able to start using the new connection without restarting the service.

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR / 'db.sqlite3',
    },
    'new_db': {
        'ENGINE': 'django.db.backends.postgresql',
        'NAME': 'new_db_name',
        'USER': 'new_db_user',
        'PASSWORD': 'new_db_password',
        'HOST': 'new_db_host',
        'PORT': 'new_db_port',
    }
}
Reasons:
  • Blacklisted phrase (1): I have the same question
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same question
  • Low reputation (1):
Posted by: Fernando Morassutti