forked from dj-stripe/dj-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
51 lines (47 loc) · 1.74 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
site_name: Dj-Stripe
site_url: https://dj-stripe.readthedocs.io/
site_description: Django + Stripe Made Easy
site_author: Dj-Stripe Team
repo_url: https://github.com/dj-stripe/dj-stripe/
theme:
name: readthedocs
highlightjs: true
hljs_languages:
- yaml
- django
markdown_extensions:
- admonition
- mkautodoc
nav:
- Home: index.md
- Getting Started:
- Installation: installation.md
- A note on Stripe API Versions: api_versions.md
- A note on Stripe Stripe Elements JS methods: stripe_elements_js.md
- Usage:
- Checking if a customer has a subscription: usage/checking_customer_subscription.md
- Subscribing a customer to a plan: usage/subscribing_customers.md
- Creating a one-off charge for a customer: usage/one_off_charges.md
- Restricting access to only active subscribers: usage/restricting_access.md
- Managing subscriptions and payment sources: usage/managing_subscriptions.md
- Creating invoices: usage/creating_invoices.md
- Running reports: usage/running_reports.md
- Webhooks: usage/webhooks.md
- Manually syncing data with Stripe: usage/manually_syncing_with_stripe.md
- Cookbook: usage/cookbook.md
- Reference:
- Context Managers: reference/context_managers.md
- Decorators: reference/decorators.md
- Enumerations: reference/enums.md
- Managers: reference/managers.md
- Middleware: reference/middleware.md
- Models: reference/models.md
- Settings: reference/settings.md
- Utilities: reference/utils.md
- Project:
- Contributing: project/contributing.md
- Test Fixtures: project/test_fixtures.md
- Credits: project/authors.md
- History: project/history.md
- Support: project/support.md
- Release Process: project/release_process.md