An e-commerce extension for Wagtail CMS
 
 
 
 
 
 
Go to file
James Ramm fd6cd2eab6 Reworking of Products (#86)
* Fixes #76 and fixes #47 by removing concrete product models from longclaw. Abstract classes are provided as a starting point and concrete models moved to the project template

* Products fully customisable (and therefore product index). Work on #76

* Removes concrete product models from longclaw, allowing customisation. For #76 and #47

* Product base testing

* Reorder imports for tests

* Drop py3.3

* Add back admin.py

* Update page panels

* Add tests to products
2017-09-17 14:01:12 +02:00
.github simpler issue template and readme updated for 0.1 2017-04-10 17:07:16 +01:00
docs Reworking of Products (#86) 2017-09-17 14:01:12 +02:00
longclaw Reworking of Products (#86) 2017-09-17 14:01:12 +02:00
.coveragerc First commit 2017-02-03 10:04:57 +00:00
.editorconfig First commit 2017-02-03 10:04:57 +00:00
.gitignore Add to basket template tag & docs (#82) 2017-08-25 08:33:47 +01:00
.landscape.yaml Correct error in landscape config 2017-09-08 16:45:46 +02:00
.travis.yml Remove py33 from env list for travis 2017-09-08 08:58:03 +02:00
AUTHORS.rst Add to basket template tag & docs (#82) 2017-08-25 08:33:47 +01:00
CHANGELOG.rst Bump version for 1.0 2017-09-06 11:36:54 +02:00
CONTRIBUTING.rst simpler issue template and readme updated for 0.1 2017-04-10 17:07:16 +01:00
LICENSE First commit 2017-02-03 10:04:57 +00:00
MANIFEST.in First commit 2017-02-03 10:04:57 +00:00
Makefile First commit 2017-02-03 10:04:57 +00:00
README.rst Add landscape 2017-09-08 08:55:04 +02:00
codecov.yml Checkout view (#68) 2017-05-24 11:12:36 +01:00
manage.py First commit 2017-02-03 10:04:57 +00:00
requirements.txt Update django-extensions from 1.9.0 to 1.9.1 (#88) 2017-09-13 15:24:29 +02:00
requirements_dev.txt Update wheel from 0.29.0 to 0.30.0 (#87) 2017-09-16 07:31:33 +02:00
requirements_test.txt Initial Update (#78) 2017-08-09 11:15:38 +01:00
runtests.py Checkout tests. #37 2017-03-29 17:28:43 +01:00
setup.cfg Bump versions for next release 2017-04-28 12:07:18 +01:00
setup.py Reworking of Products (#86) 2017-09-17 14:01:12 +02:00
tox.ini Remove py3.3 from testing 2017-09-06 10:23:55 +02:00

README.rst

=============================
Longclaw
=============================

.. image:: https://badge.fury.io/py/longclaw.svg
    :target: https://badge.fury.io/py/longclaw

.. image:: https://codecov.io/gh/JamesRamm/longclaw/branch/master/graph/badge.svg
  :target: https://codecov.io/gh/JamesRamm/longclaw

.. image:: https://travis-ci.org/JamesRamm/longclaw.svg?branch=master
    :target: https://travis-ci.org/JamesRamm/longclaw

.. image:: https://landscape.io/github/JamesRamm/longclaw/master/landscape.svg?style=flat
   :target: https://landscape.io/github/JamesRamm/longclaw/master
   :alt: Code Health

.. image:: https://readthedocs.org/projects/longclaw/badge/?version=latest
    :target: http://longclaw.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status

An e-commerce extension for `Wagtail CMS <https://github.com/wagtail/wagtail>`_
Checkout the `demo site <https://github.com/JamesRamm/longclaw_demo>`_ and `documentation <http://longclaw.readthedocs.io/en/latest/>`_

.. image:: docs/_static/images/dashboard.png
    :alt: Longclaw dashboard

Quickstart
----------
Install Longclaw::

  $ pip install longclaw

Setup a Wagtail+Longclaw project::

  $ longclaw start my_project

Features
--------

View and fulfill orders from the Wagtail admin
+++++++++++++++++++++++++++++++++++++++++++++++

.. image:: docs/_static/images/order_list.png

The orders list can be sorted and filtered by status, date or customer

.. image:: docs/_static/images/order_detail.png

Variable Shipping Rates
+++++++++++++++++++++++

Manage your shipping destinations and rates from the Wagtail admin.

Pluggable basket and checkout API
++++++++++++++++++++++++++++++++++

Longclaw provides a simple RESTful API for retrieving/updating the shopping basket and for performing a checkout.
Longclaw currently supports Stripe, Braintree and PayPal (v.zero) payments.

Easy project startup and catalogue modelling
++++++++++++++++++++++++++++++++++++++++++++

Longclaw provides a project template to easily setup your Wagtail + Longclaw project. This sets up a basic ``ProductVariant`` model
so you can get started adding your product-specific fields straight away.

Test Coverage
--------------

.. image:: https://codecov.io/gh/JamesRamm/longclaw/branch/master/graphs/tree.svg


Support
--------

Please raise bugs/feature requests using the github issue tracker and ask questions on stackoverflow.