mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
11 lines
255 B
Python
11 lines
255 B
Python
from .settings import *
|
|
|
|
DATABASES["default"] = {
|
|
"NAME": "zulip_slack_importer_test",
|
|
"USER": "zulip_test",
|
|
"PASSWORD": LOCAL_DATABASE_PASSWORD,
|
|
"HOST": "localhost",
|
|
"SCHEMA": "zulip",
|
|
"ENGINE": "django.db.backends.postgresql",
|
|
}
|