wagtail-longclaw/docs/usage/install.rst

32 wiersze
973 B
ReStructuredText
Czysty Zwykły widok Historia

2017-03-24 08:50:25 +00:00
.. _install:
Installing Longclaw
====================
2017-04-10 15:58:08 +00:00
Longclaw can be installed from pypi:
2017-03-24 08:50:25 +00:00
.. code-block:: bash
2017-04-10 15:58:08 +00:00
$ pip install longclaw
2017-03-24 08:50:25 +00:00
The Longclaw CLI can then be used to start a new Wagtail/Longclaw project. It behaves much the same as
2017-03-24 10:07:16 +00:00
the Wagtail CLI:
2017-03-24 08:50:25 +00:00
.. code-block:: bash
$ longclaw start my_project
This will provide you with a minimal Wagtail & longclaw website.
Longclaw integrates tightly with Wagtail, so you should be familiar with developing Wagtail sites before continuing:
http://docs.wagtail.io/
In order to process real payments, you will need to install the client library for your chosen payment backend.
This will either be:
- Stripe; ``pip install stripe``
- Braintree (for braintree and paypal payments); ``pip install braintree``
For other payment gateways, you will need to :ref:`write your own integration <custom-integrations>`.
Next, read about :ref:`modelling your catalogue and adding products <products>` to your new site