forked from Maxitosh/dj-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
85 lines (80 loc) · 2.8 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
site_name: Dj-Stripe
site_url: https://dj-stripe.github.io/dj-stripe/
site_description: Django + Stripe Made Easy
site_author: Dj-Stripe Team
repo_url: https://github.com/dj-stripe/dj-stripe/
theme:
name: readthedocs
features:
- search.suggest
- search.highligh
markdown_extensions:
- admonition
- codehilite
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets
plugins:
- autorefs
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
# show_root_heading: true
show_object_full_path: true
show_category_heading: true
show_if_no_docstring: true
setup_commands:
- import os
- import sys
- import django
- sys.path.insert(0, os.path.abspath("."))
- os.environ.setdefault("DJANGO_SETTINGS_MODULE", "tests.settings")
- django.setup()
watch:
- .
enable_inventory: true
- mike:
canonical_version: "2.7"
nav:
- Home: README.md
- Sponsors: project/sponsors.md
- Getting Started:
- Installation: installation.md
- Managing Stripe API Keys: api_keys.md
- A note on Stripe API Versions: api_versions.md
- Integrating Stripe Elements: stripe_elements_js.md
- Release notes:
- dj-stripe 2.7 release notes: history/2_7_0.md
- dj-stripe 2.6 release notes: history/2_6_0.md
- dj-stripe 2.5 release notes: history/2_5_0.md
- dj-stripe 2.4.1 release notes: history/2_4_x.md
- dj-stripe 2.4 release notes: history/2_4_0.md
- dj-stripe 2.0 ~ 2.3 release notes: history/2_x.md
- dj-stripe 1.x release notes: history/1_x.md
- dj-stripe 0.x release notes: history/0_x.md
- Usage:
- Using Stripe Webhooks: usage/webhooks.md
- Subscribing a customer to a plan: usage/subscribing_customers.md
- Managing subscriptions and payment sources: usage/managing_subscriptions.md
- Manually syncing data with Stripe: usage/manually_syncing_with_stripe.md
- Creating individual charges: usage/creating_individual_charges.md
- Creating Usage Records: usage/creating_usage_record.md
- Using Stripe Checkout: usage/using_stripe_checkout.md
- Using with Docker: usage/using_with_docker.md
- Development with local webhooks: usage/local_webhook_testing.md
- Project:
- Contributing: project/contributing.md
- Test Fixtures: project/test_fixtures.md
- Credits: project/authors.md
- Support: project/support.md
- Release Process: project/release_process.md
- Reference:
- Enumerations: reference/enums.md
- Managers: reference/managers.md
- Models: reference/models.md
- Settings: reference/settings.md
- Utilities: reference/utils.md