From 81fdc62ba03d5d6848354957d779364e3ac29c51 Mon Sep 17 00:00:00 2001 From: Alex Recker Date: Sat, 31 Oct 2015 15:42:08 -0500 Subject: [PATCH] Gets ready for prod --- contacting/templates/contacting/contact.html | 3 +++ contacting/templates/contacting/thanks.html | 3 +++ murals/settings.py | 1 - requirements/prod.txt | 14 ++++++++++++++ 4 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 requirements/prod.txt diff --git a/contacting/templates/contacting/contact.html b/contacting/templates/contacting/contact.html index 3fd55ef..ae5940b 100644 --- a/contacting/templates/contacting/contact.html +++ b/contacting/templates/contacting/contact.html @@ -1,4 +1,7 @@ {% extends "base.html" %} +{% block title %} +Contact | Marissa's Murals +{% endblock %} {% block body %}
diff --git a/contacting/templates/contacting/thanks.html b/contacting/templates/contacting/thanks.html index 5e28fdf..059357d 100644 --- a/contacting/templates/contacting/thanks.html +++ b/contacting/templates/contacting/thanks.html @@ -1,4 +1,7 @@ {% extends "base.html" %} +{% block title %} +Contact | Marissa's Murals +{% endblock %} {% block body %}
diff --git a/murals/settings.py b/murals/settings.py index c79b4e0..51fd1e7 100644 --- a/murals/settings.py +++ b/murals/settings.py @@ -91,5 +91,4 @@ STATIC_ROOT = os.path.join(BASE_DIR, 'prod_static') ADMIN_MEDIA_PREFIX = '/media/' -COMPRESS_ENABLED=True GOOGLE_ANALYTICS_PROPERTY_ID = 'UA-42540208-9' diff --git a/requirements/prod.txt b/requirements/prod.txt new file mode 100644 index 0000000..ad04980 --- /dev/null +++ b/requirements/prod.txt @@ -0,0 +1,14 @@ +# Current version of Django +Django==1.8.2 + +# Common Reqs +-r common.txt + +# Postgres adapter +psycopg2==2.6 + +# Gunicorn server +gunicorn==19.3.0 + +# Memcached +python-memcached