diff --git a/project-django-1.8/project_name/settings/development.py b/project-django-1.8/project_name/settings/development.py index 01675d7ac682c283b61a5827cb6be21218a46538..2522b4c0f8a558334848dfe5ce55c151b313141b 100644 --- a/project-django-1.8/project_name/settings/development.py +++ b/project-django-1.8/project_name/settings/development.py @@ -28,3 +28,6 @@ DATABASES = { 'PORT': '', } } + +# Hostnames/FQDNs considered valid for accessing the installation. +ALLOWED_HOSTS = [] diff --git a/project-django-1.8/project_name/settings/testing.py b/project-django-1.8/project_name/settings/test.py similarity index 100% rename from project-django-1.8/project_name/settings/testing.py rename to project-django-1.8/project_name/settings/test.py diff --git a/project-django-1.8/requirements/base.txt b/project-django-1.8/requirements/base.txt new file mode 100644 index 0000000000000000000000000000000000000000..37e98983251cd351e5a4a5838d42f93ba579f809 --- /dev/null +++ b/project-django-1.8/requirements/base.txt @@ -0,0 +1 @@ +Django==1.8.15 diff --git a/project-django-1.8/requirements/development.txt b/project-django-1.8/requirements/development.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0cd5582c6652013aa8dc6095f1fce46da3fb588 --- /dev/null +++ b/project-django-1.8/requirements/development.txt @@ -0,0 +1,2 @@ +# Include requirements shared across all environments. +-r base.txt diff --git a/project-django-1.8/requirements/production.txt b/project-django-1.8/requirements/production.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0cd5582c6652013aa8dc6095f1fce46da3fb588 --- /dev/null +++ b/project-django-1.8/requirements/production.txt @@ -0,0 +1,2 @@ +# Include requirements shared across all environments. +-r base.txt diff --git a/project-django-1.8/requirements/staging.txt b/project-django-1.8/requirements/staging.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0cd5582c6652013aa8dc6095f1fce46da3fb588 --- /dev/null +++ b/project-django-1.8/requirements/staging.txt @@ -0,0 +1,2 @@ +# Include requirements shared across all environments. +-r base.txt diff --git a/project-django-1.8/requirements/test.txt b/project-django-1.8/requirements/test.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0cd5582c6652013aa8dc6095f1fce46da3fb588 --- /dev/null +++ b/project-django-1.8/requirements/test.txt @@ -0,0 +1,2 @@ +# Include requirements shared across all environments. +-r base.txt