Commit 631a7a6f by Renzo Lucioni

Merge pull request #5 from edx/renzo/waffle

Add django-waffle
parents ec43c42b eda33ca6
edx-ecommerce edx-ecommerce
============= =============
The edX E-Commerce Front End Service. This repository is the new home for all The edX E-Commerce Front End Service. This repository is the new home for all
front-end code related to products, purchasing, upsell, and marketing. front-end code related to products, purchasing, upsell, and marketing.
This project is new and under active development. This project is new and under active development.
Overview Overview
-------- --------
This service contains the front end for all views related to products and This service contains the front end for all views related to products and
purchasable services offered by edX. All business logic and underlying purchasable services offered by edX. All business logic and underlying
applications are invoked separately from other edX projects, such as applications are invoked separately from other edX projects, such as
edx-platform. The e-commerce solution responsible for all purchases and edx-platform. The e-commerce solution responsible for all purchases and
transactions is `django-oscar <https://github.com/edx/django-oscar>`_. transactions is `django-oscar <https://github.com/edx/django-oscar>`_.
Each top level application in this repository is an isolated set of views Each top level application in this repository is an isolated set of views
specific to one aspect of edX's e-commerce solution. specific to one aspect of edX's e-commerce solution.
Getting Started Getting Started
......
...@@ -183,6 +183,7 @@ MIDDLEWARE_CLASSES = ( ...@@ -183,6 +183,7 @@ MIDDLEWARE_CLASSES = (
'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware', 'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware',
'waffle.middleware.WaffleMiddleware',
) )
########## END MIDDLEWARE CONFIGURATION ########## END MIDDLEWARE CONFIGURATION
...@@ -211,6 +212,11 @@ DJANGO_APPS = ( ...@@ -211,6 +212,11 @@ DJANGO_APPS = (
# Admin panel and documentation # Admin panel and documentation
'django.contrib.admin', 'django.contrib.admin',
# Feature gating
'waffle',
# Static file compression
'compressor', 'compressor',
) )
......
# Base Requirements for the E-Commerce Service. # Base Requirements for the E-Commerce Service.
Django==1.7.1 # BSD License Django==1.7.4 # BSD License
django-appconf==0.6 django-appconf==0.6
django_compressor==1.4 # MIT django_compressor==1.4 # MIT
django-libsass==0.2 # BSD django-libsass==0.2 # BSD
django-model-utils==1.5.0 # BSD django-model-utils==1.5.0 # BSD
django-waffle==0.10 # BSD
djangorestframework==3.0.5 # MIT djangorestframework==3.0.5 # MIT
logutils==0.3.3 # BSD logutils==0.3.3 # BSD
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment