Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
R
red-ci-cd
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
red-group-test
red-ci-cd
Commits
8892170a
Commit
8892170a
authored
Jan 07, 2020
by
John Red Medrano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing
parent
5f027f24
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
4 deletions
+8
-4
config/settings/dev.py
config/settings/dev.py
+2
-1
config/settings/local.py
config/settings/local.py
+1
-0
config/settings/sit.py
config/settings/sit.py
+3
-2
config/settings/staging.py
config/settings/staging.py
+2
-1
No files found.
config/settings/dev.py
View file @
8892170a
...
...
@@ -14,7 +14,8 @@ CHANNEL_LAYERS = {
'default'
:
{
'BACKEND'
:
'channels_redis.core.RedisChannelLayer'
,
'CONFIG'
:
{
"hosts"
:
[(
'172.17.0.1'
,
6379
)],
# "hosts": [('172.17.0.1', 6379)],
"hosts"
:
[(
'127.0.0.1'
,
6379
)],
},
},
}
...
...
config/settings/local.py
View file @
8892170a
...
...
@@ -11,6 +11,7 @@ CHANNEL_LAYERS = {
'default'
:
{
'BACKEND'
:
'channels_redis.core.RedisChannelLayer'
,
'CONFIG'
:
{
# "hosts": [('127.0.0.1', 6379)],
"hosts"
:
[(
'127.0.0.1'
,
6379
)],
},
},
...
...
config/settings/sit.py
View file @
8892170a
from
.base
import
*
import
configparser
DEBUG
=
Fals
e
DEBUG
=
Tru
e
ALLOWED_HOSTS
=
[
'*'
]
...
...
@@ -13,7 +13,8 @@ CHANNEL_LAYERS = {
'default'
:
{
'BACKEND'
:
'channels_redis.core.RedisChannelLayer'
,
'CONFIG'
:
{
"hosts"
:
[(
'172.17.0.1'
,
6379
)],
# "hosts": [('172.17.0.1', 6379)],
"hosts"
:
[(
'127.0.0.1'
,
6379
)],
},
},
}
...
...
config/settings/staging.py
View file @
8892170a
...
...
@@ -13,7 +13,8 @@ CHANNEL_LAYERS = {
'default'
:
{
'BACKEND'
:
'channels_redis.core.RedisChannelLayer'
,
'CONFIG'
:
{
"hosts"
:
[(
'172.17.0.1'
,
6379
)],
# "hosts": [('172.17.0.1', 6379)],
"hosts"
:
[(
'127.0.0.1'
,
6379
)],
},
},
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment