An e-commerce extension for Wagtail CMS
 
 
 
 
 
 
Go to file
JamesRamm 91a4106714 Fixes #46 2017-04-02 10:14:20 +01:00
.github First commit 2017-02-03 10:04:57 +00:00
docs More work on #41 2017-03-31 09:20:39 +01:00
longclaw Fixes #46 2017-04-02 10:14:20 +01:00
.coveragerc First commit 2017-02-03 10:04:57 +00:00
.editorconfig First commit 2017-02-03 10:04:57 +00:00
.gitignore Longclaw CLI, fixes #23 2017-02-27 22:11:10 +00:00
.travis.yml Update node version 2017-02-10 19:01:12 +00:00
AUTHORS.rst First commit 2017-02-03 10:04:57 +00:00
CHANGELOG.rst Start on #5 2017-02-12 21:36:31 +00:00
CONTRIBUTING.rst Remove some of the default cookiecutter stuff from contribution guide 2017-02-12 21:48:41 +00: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 Update README.rst 2017-03-31 08:07:20 +01:00
manage.py First commit 2017-02-03 10:04:57 +00:00
requirements.txt Fixes #24 2017-02-27 21:43:31 +00:00
requirements_dev.txt Call npm from client dir 2017-02-10 18:43:22 +00:00
requirements_test.txt Checkout tests. #37 2017-03-29 17:28:43 +01:00
runtests.py Checkout tests. #37 2017-03-29 17:28:43 +01:00
setup.cfg First commit 2017-02-03 10:04:57 +00:00
setup.py Checkout tests. #37 2017-03-29 17:28:43 +01:00
tox.ini First commit 2017-02-03 10:04:57 +00:00

README.rst

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

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

.. image:: https://travis-ci.org/JamesRamm/longclaw.svg?branch=master
    :target: https://travis-ci.org/JamesRamm/longclaw
    
.. image:: https://readthedocs.org/projects/longclaw/badge/?version=latest
    :target: http://longclaw.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status


An e-commerce plugin for `Wagtail CMS <https://github.com/wagtail/wagtail>`_

    .. note:: Longclaw is currently in pre-release development. I am working hard to get a stable v0.1.0 release available. It is likely there will be further breaking changes until then. 

`Documentation <http://longclaw.readthedocs.io/en/latest/>`_

  .. figure:: docs/_static/images/dashboard.png
     
     Longclaw dashboard

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

  $ pip install git+git://github.com/JamesRamm/longclaw

Build the front-end assets (requires node.js & npm)::

  $ longclaw build
    
Setup a Wagtail+Longclaw project::

  $ longclaw start my_project

Features
--------

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

  .. figure:: docs/_static/images/order_list.png
     
     The orders list can be sorted and filtered by status, date or customer

  .. figure:: 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.

Running Tests
-------------

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox
    
Support
--------

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