Changeset - 562fa38d39b4
[Not reviewed]
1 1 6
Branko Majic (branko) - 9 years ago 2016-10-22 13:28:35
branko@majic.rs
MDT-3: Added ALLOWED_HOSTS to development.py for consistency. Renamed testing.py to test.py. Added requirements files to support specifying what packages need to be installed in what environment.
7 files changed with 12 insertions and 0 deletions:
0 comments (0 inline, 0 general)
project-django-1.8/project_name/settings/development.py
Show inline comments
 
@@ -28,3 +28,6 @@ DATABASES = {
 
        'PORT': '',
 
    }
 
}
 

	
 
# Hostnames/FQDNs considered valid for accessing the installation.
 
ALLOWED_HOSTS = []
project-django-1.8/project_name/settings/test.py
Show inline comments
 
file renamed from project-django-1.8/project_name/settings/testing.py to project-django-1.8/project_name/settings/test.py
project-django-1.8/requirements/base.txt
Show inline comments
 
new file 100644
 
Django==1.8.15
project-django-1.8/requirements/development.txt
Show inline comments
 
new file 100644
 
# Include requirements shared across all environments.
 
-r base.txt
project-django-1.8/requirements/production.txt
Show inline comments
 
new file 100644
 
# Include requirements shared across all environments.
 
-r base.txt
project-django-1.8/requirements/staging.txt
Show inline comments
 
new file 100644
 
# Include requirements shared across all environments.
 
-r base.txt
project-django-1.8/requirements/test.txt
Show inline comments
 
new file 100644
 
# Include requirements shared across all environments.
 
-r base.txt
0 comments (0 inline, 0 general)