Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dymas
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
rank
dymas
Commits
56edf880
Commit
56edf880
authored
Dec 25, 2019
by
lixiaofang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doris_dymas
parent
d067b323
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
workspace.xml
.idea/workspace.xml
+0
-0
base.py
dymas/base.py
+1
-1
celery.py
dymas/celery.py
+2
-2
doris_injection.py
dymas/doris_injection.py
+1
-1
wsgi.py
dymas/wsgi.py
+1
-1
No files found.
.idea/workspace.xml
View file @
56edf880
This diff is collapsed.
Click to expand it.
dymas/base.py
View file @
56edf880
...
...
@@ -58,7 +58,7 @@ MIDDLEWARE = [
'django.middleware.clickjacking.XFrameOptionsMiddleware'
,
]
ROOT_URLCONF
=
'd
ori
s.urls'
ROOT_URLCONF
=
'd
yma
s.urls'
TEMPLATES
=
[
{
...
...
dymas/celery.py
View file @
56edf880
...
...
@@ -6,9 +6,9 @@ from celery import Celery
from
django.conf
import
settings
# set the default Django settings module for the 'celery' program.
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'd
ori
s.devel'
)
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'd
yma
s.devel'
)
app
=
Celery
(
'd
ori
s'
)
app
=
Celery
(
'd
yma
s'
)
# Using a string here means the worker don't have to serialize
# the configuration object to child processes.
...
...
dymas/doris_injection.py
View file @
56edf880
import
os
import
django
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'd
ori
s.devel'
)
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'd
yma
s.devel'
)
django
.
setup
()
dymas/wsgi.py
View file @
56edf880
...
...
@@ -11,6 +11,6 @@ import os
from
django.core.wsgi
import
get_wsgi_application
os
.
environ
.
setdefault
(
"DJANGO_SETTINGS_MODULE"
,
"d
ori
s.devel"
)
os
.
environ
.
setdefault
(
"DJANGO_SETTINGS_MODULE"
,
"d
yma
s.devel"
)
application
=
get_wsgi_application
()
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