Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
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-platform
Commits
18fb637f
Commit
18fb637f
authored
Mar 22, 2012
by
David Ormsbee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove redundancy between dev and devplus envs in config
parent
4bcfaed5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
12 deletions
+3
-12
settings2/devplus.py
+3
-12
No files found.
settings2/devplus.py
View file @
18fb637f
"""
"""
This config file tries to mimic the production environment more closely than the
This config file tries to mimic the production environment more closely than the
normal dev.py. It assumes you're running a local instance of MySQL 5.1 and that
normal dev.py. It assumes you're running a local instance of MySQL 5.1 and that
you're running memcached.
you're running memcached. You'll want to use this to test caching and database
migrations.
"""
"""
from
common
import
*
from
dev
import
*
CSRF_COOKIE_DOMAIN
=
'localhost'
DATABASES
=
{
DATABASES
=
{
'default'
:
{
'default'
:
{
...
@@ -18,9 +17,6 @@ DATABASES = {
...
@@ -18,9 +17,6 @@ DATABASES = {
}
}
}
}
# Make this unique, and don't share it with anybody.
SECRET_KEY
=
'85920908f28904ed733fe576320db18cabd7b6cd'
CACHES
=
{
CACHES
=
{
'default'
:
{
'default'
:
{
'BACKEND'
:
'django.core.cache.backends.memcached.MemcachedCache'
,
'BACKEND'
:
'django.core.cache.backends.memcached.MemcachedCache'
,
...
@@ -28,8 +24,4 @@ CACHES = {
...
@@ -28,8 +24,4 @@ CACHES = {
}
}
}
}
SESSION_ENGINE
=
'django.contrib.sessions.backends.cache'
SESSION_ENGINE
=
'django.contrib.sessions.backends.cache'
DEBUG
=
True
TEMPLATE_DEBUG
=
True
\ No newline at end of file
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