This is not the page you were looking for.
+{% endblock content %}
\ No newline at end of file
diff --git a/analytics_dashboard/templates/500.html b/analytics_dashboard/templates/500.html
new file mode 100644
index 000000000..2118bb2cf
--- /dev/null
+++ b/analytics_dashboard/templates/500.html
@@ -0,0 +1 @@
+
+
+
{% block page_title %}Example Base Template{% endblock page_title %}
+
+ {% block content %}
+
Use this document as a way to quick start any new project.
+ {% endblock content %}
+
+
+
+
+
+
+
+
+
+
+
+ {% block extra_js %}{% endblock extra_js %}
+
+
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 000000000..d1197135e
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,3 @@
+# This file is here because many Platforms as a Service look for
+# requirements.txt in the root directory of a project.
+-r requirements/production.txt
diff --git a/requirements/base.txt b/requirements/base.txt
new file mode 100644
index 000000000..83caab352
--- /dev/null
+++ b/requirements/base.txt
@@ -0,0 +1,6 @@
+Django==1.6.2
+bpython==0.12
+django-braces==1.2.2
+django-model-utils==1.5.0
+logutils==0.3.3
+South==0.8.2
diff --git a/requirements/local.txt b/requirements/local.txt
new file mode 100644
index 000000000..20880ddb1
--- /dev/null
+++ b/requirements/local.txt
@@ -0,0 +1,6 @@
+# Local development dependencies go here
+-r base.txt
+coverage==3.6
+django-discover-runner==0.4
+django-debug-toolbar==1.0.1
+Sphinx==1.2.1
diff --git a/requirements/production.txt b/requirements/production.txt
new file mode 100644
index 000000000..6cb23f000
--- /dev/null
+++ b/requirements/production.txt
@@ -0,0 +1,5 @@
+# Pro-tip: Try not to put anything here. There should be no dependency in
+# production that isn't in development.
+-r base.txt
+
+gunicorn==0.17.4
diff --git a/requirements/test.txt b/requirements/test.txt
new file mode 100644
index 000000000..190632384
--- /dev/null
+++ b/requirements/test.txt
@@ -0,0 +1,4 @@
+# Test dependencies go here.
+-r base.txt
+coverage==3.6
+django-discover-runner==0.4