An e-commerce extension for Wagtail CMS
 
 
 
 
 
 
Go to file
James Ramm 07e634fdd7 Update README.rst 2017-02-22 16:50:18 +00:00
.github First commit 2017-02-03 10:04:57 +00:00
docs Add info on payment dependency 2017-02-22 16:39:09 +00:00
longclaw Remove 'stock' field from template products 2017-02-22 16:44:17 +00:00
.coveragerc First commit 2017-02-03 10:04:57 +00:00
.editorconfig First commit 2017-02-03 10:04:57 +00:00
.gitignore Order view front end 2017-02-10 09:06:35 +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-02-22 16:50:18 +00:00
manage.py First commit 2017-02-03 10:04:57 +00:00
requirements.txt Add install requires & update to latest wagtail 2017-02-22 15:50:07 +00:00
requirements_dev.txt Call npm from client dir 2017-02-10 18:43:22 +00:00
requirements_test.txt Fix for #9 2017-02-06 08:34:23 +00:00
runtests.py Provides a project template 2017-02-17 09:03:21 +00:00
setup.cfg First commit 2017-02-03 10:04:57 +00:00
setup.py Add install requires & update to latest wagtail 2017-02-22 15:50:07 +00: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


A shop for `Wagtail CMS <https://github.com/wagtail/wagtail>`_

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

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

Note: Longclaw v0.1 is currently in development; expect many changes
    
Setup a Wagtail+Longclaw project::

  $ django-admin startproject --template /path/to/longclaw/project_template/ --ext py,js,css,html project_name

Features
--------

* Order admin page for Wagtail
* Variable shipping rates per country, managed from wagtail admin
* Pluggable basket and checkout API, supporting a variety of payment backends
* Designed to be adaptable to the needs of your own product catalogue
* Complete control of your own front end, just like Wagtail. 

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

::

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