Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
ecommerce
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
ecommerce
Commits
631a7a6f
Commit
631a7a6f
authored
Feb 17, 2015
by
Renzo Lucioni
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5 from edx/renzo/waffle
Add django-waffle
parents
ec43c42b
eda33ca6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
9 deletions
+16
-9
README.rst
+8
-8
ecommerce/settings/base.py
+6
-0
requirements/base.txt
+2
-1
No files found.
README.rst
View file @
631a7a6f
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
...
...
ecommerce/settings/base.py
View file @
631a7a6f
...
@@ -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'
,
)
)
...
...
requirements/base.txt
View file @
631a7a6f
# 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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment