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 +}