Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-notes-api
Overview
Overview
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
edx
edx-notes-api
Commits
caff54e6
Commit
caff54e6
authored
Jan 02, 2015
by
Oleg Marshev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
travis.
parent
ead202e4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
1 deletions
+25
-1
notesserver/settings/dev.py
+1
-1
notesserver/settings/test.py
+24
-0
No files found.
notesserver/settings/dev.py
View file @
caff54e6
...
@@ -12,4 +12,4 @@ DATABASES = {
...
@@ -12,4 +12,4 @@ DATABASES = {
}
}
}
}
LOGGING
=
get_logger_config
(
debug
=
DEBUG
)
LOGGING
=
get_logger_config
(
debug
=
DEBUG
,
dev_env
=
True
,
local_loglevel
=
'DEBUG'
)
notesserver/settings/test.py
View file @
caff54e6
...
@@ -11,3 +11,27 @@ DISABLE_TOKEN_CHECK = False
...
@@ -11,3 +11,27 @@ DISABLE_TOKEN_CHECK = False
INSTALLED_APPS
+=
(
'django_nose'
,)
INSTALLED_APPS
+=
(
'django_nose'
,)
ES_INDEXES
=
{
'default'
:
'notes_index_test'
}
ES_INDEXES
=
{
'default'
:
'notes_index_test'
}
LOGGING
=
{
'version'
:
1
,
'disable_existing_loggers'
:
False
,
'handlers'
:
{
'console'
:
{
'level'
:
'DEBUG'
,
'class'
:
'logging.StreamHandler'
,
'stream'
:
sys
.
stderr
,
},
},
'loggers'
:
{
'django'
:
{
'handlers'
:
[
'console'
],
'level'
:
'ERROR'
,
'propagate'
:
False
,
},
'elasticsearch.trace'
:
{
'handlers'
:
[
'console'
],
'level'
:
'ERROR'
,
'propagate'
:
False
}
},
}
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