forked from breatheco-de/apiv2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
67 lines (63 loc) · 1.88 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
site_name: BreatheCode
site_url: https://breathecode.herokuapp.com/
theme:
name: "material"
# this define the order of menu
nav:
- 'index.md'
- Installation:
- 'installation/environment-variables.md'
- 'installation/fixtures.md'
- Deployments:
- 'deployment/environment-variables.md'
- 'deployment/configuring-the-github-secrets.md'
- Apps:
- Monitoring:
- 'apps/monitoring/introduction.md'
- 'apps/monitoring/scripts.md'
- 'apps/activities.md'
- 'apps/admissions.md'
- Security:
- 'security/introduction.md'
- 'security/authentication-class.md'
- 'security/capabilities.md'
- 'security/schema-link.md'
- Services:
- Google Cloud:
- 'services/google_cloud/google-cloud-functions.md'
- 'services/google_cloud/storage.md'
- Slack:
- 'services/slack integration/icons.md'
- Signals:
- 'signals/quickstart.md'
- Testing:
- 'testing/runing-tests.md'
- Mixins:
- 'bc': 'testing/mixins/bc.md'
- 'bc.fake': 'testing/mixins/bc-fake.md'
- 'bc.request': 'testing/mixins/bc-request.md'
- 'bc.database': 'testing/mixins/bc-database.md'
- 'bc.datetime': 'testing/mixins/bc-datetime.md'
- 'bc.format': 'testing/mixins/bc-format.md'
- 'bc.check': 'testing/mixins/bc-check.md'
- 'bc.cache': 'testing/mixins/bc-cache.md'
- 'bc.random': 'testing/mixins/bc-random.md'
- Mocks:
- 'testing/mocks/using-mocks.md'
- 'testing/mocks/mock-requests.md'
plugins:
- search
- mkdocstrings:
handlers:
python:
setup_commands:
- import os
- import django
- os.environ.setdefault("DJANGO_SETTINGS_MODULE", "breathecode.settings")
- django.setup()
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences