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
54756bf5
Commit
54756bf5
authored
Jun 06, 2012
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use relative includes in settings files
parent
fa42022e
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
13 deletions
+13
-13
lms/envs/aws.py
+2
-2
lms/envs/content.py
+1
-1
lms/envs/dev_ike.py
+3
-3
lms/envs/devplus.py
+1
-1
lms/envs/static.py
+2
-2
lms/envs/test.py
+2
-2
lms/envs/test_ike.py
+2
-2
No files found.
lms/envs/aws.py
View file @
54756bf5
...
...
@@ -8,8 +8,8 @@ Common traits:
"""
import
json
from
envs
.logsettings
import
get_logger_config
from
envs
.common
import
*
from
.logsettings
import
get_logger_config
from
.common
import
*
############################### ALWAYS THE SAME ################################
DEBUG
=
False
...
...
lms/envs/content.py
View file @
54756bf5
...
...
@@ -2,7 +2,7 @@
These are debug machines used for content creators, so they're kind of a cross
between dev machines and AWS machines.
"""
from
envs
.aws
import
*
from
.aws
import
*
DEBUG
=
True
TEMPLATE_DEBUG
=
True
...
...
lms/envs/dev_ike.py
View file @
54756bf5
...
...
@@ -13,9 +13,9 @@ import socket
if
'eecs1'
in
socket
.
gethostname
():
MITX_ROOT_URL
=
'/mitx2'
from
envs
.common
import
*
from
envs
.logsettings
import
get_logger_config
from
dev
import
*
from
.common
import
*
from
.logsettings
import
get_logger_config
from
.
dev
import
*
if
'eecs1'
in
socket
.
gethostname
():
MITX_ROOT_URL
=
'/mitx2'
...
...
lms/envs/devplus.py
View file @
54756bf5
...
...
@@ -13,7 +13,7 @@ Dir structure:
/log # Where we're going to write log files
"""
from
envs
.dev
import
*
from
.dev
import
*
DATABASES
=
{
'default'
:
{
...
...
lms/envs/static.py
View file @
54756bf5
...
...
@@ -7,8 +7,8 @@ sessions. Assumes structure:
/mitx # The location of this repo
/log # Where we're going to write log files
"""
from
envs
.common
import
*
from
envs
.logsettings
import
get_logger_config
from
.common
import
*
from
.logsettings
import
get_logger_config
STATIC_GRAB
=
True
...
...
lms/envs/test.py
View file @
54756bf5
...
...
@@ -7,8 +7,8 @@ sessions. Assumes structure:
/mitx # The location of this repo
/log # Where we're going to write log files
"""
from
envs
.common
import
*
from
envs
.logsettings
import
get_logger_config
from
.common
import
*
from
.logsettings
import
get_logger_config
import
os
INSTALLED_APPS
=
[
...
...
lms/envs/test_ike.py
View file @
54756bf5
...
...
@@ -7,8 +7,8 @@ sessions. Assumes structure:
/mitx # The location of this repo
/log # Where we're going to write log files
"""
from
envs
.common
import
*
from
envs
.logsettings
import
get_logger_config
from
.common
import
*
from
.logsettings
import
get_logger_config
import
os
DEBUG
=
True
...
...
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