forked from dj-stripe/dj-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
142 lines (131 loc) · 4.29 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
site_name: Dj-Stripe
site_url: https://dj-stripe.dev
site_description: Stripe Made Easy for Django Developers
site_footer: The link between your Django project and stripe.
site_author: Dj-Stripe Team
copyright: Copyright © 2024. All Rights Reserved.
repo_name: dj-stripe
repo_url: https://github.com/dj-stripe/dj-stripe/
theme:
logo: assets/logo.svg
favicon: assets/favicon.png
icon:
repo: fontawesome/brands/github
font:
text: Helvetica
name: material
custom_dir: overrides
static_templates:
- 404.html
features:
- content.code.annotate
- navigation.indexes
- navigation.tabs
- navigation.tabs.sticky
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- navigation.footer
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: light
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: dark
toggle:
icon: material/brightness-4
name: Switch to system preference
markdown_extensions:
- admonition
- codehilite
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.extra
- meta
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/dj-stripe/dj-stripe
version:
provider: mike
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()
enable_inventory: true
- mike:
canonical_version: "2.8"
nav:
- Documentation:
- Getting Started:
- Installation: installation.md
- Managing Stripe API Keys: api_keys.md
- A note on Stripe API Versions: api_versions.md
- Upgrade dj-stripe: upgrade_dj_stripe.md
- Integrating Stripe Elements: stripe_elements_js.md
- Usage:
- Using Stripe Webhooks: usage/webhooks.md
- Local Webhook Testing: usage/local_webhook_testing.md
- Subscribing a customer to a plan: usage/subscribing_customers.md
- Add a payment method to customer: usage/add_payment_method_to_customer.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
- 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
- Tests: reference/project.md
- Sponsors:
- Our Sponsors: project/sponsors.md
- History:
- dj-stripe 3.0 release notes: history/3_0_0.md
- dj-stripe 2.9 release notes: history/2_9_0.md
- dj-stripe 2.8 release notes: history/2_8_x.md
- dj-stripe 2.7 release notes: history/2_7_x.md
- dj-stripe 2.6 release notes: history/2_6_x.md
- dj-stripe 2.5 release notes: history/2_5_x.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