From 07dbcc8caea58b91dc4c740e562bc900c05ea990 Mon Sep 17 00:00:00 2001 From: pagezz Date: Thu, 11 Apr 2019 22:01:51 +0800 Subject: [PATCH] =?UTF-8?q?improve:=20=E6=9C=AC=E5=9C=B0=E5=BC=80=E5=8F=91?= =?UTF-8?q?local=5Fsettings=E6=A8=A1=E6=9D=BF=E6=96=87=E4=BB=B6=E4=BC=98?= =?UTF-8?q?=E5=8C=96=20#59=20(#66)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/develop/dev_settings.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/scripts/develop/dev_settings.py b/scripts/develop/dev_settings.py index 00eb7bcc12..ba98bdf2db 100644 --- a/scripts/develop/dev_settings.py +++ b/scripts/develop/dev_settings.py @@ -10,6 +10,8 @@ an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ + + DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', @@ -21,5 +23,8 @@ }, } -BK_CC_HOST = '' -BK_JOB_HOST = '' +REDIS = { + 'host': 'localhost', + 'port': 6379, + 'db': 0 +}