-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
77 lines (77 loc) · 2.57 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
site_name: Example Django and React Application
repo_url: https://github.com/glsdown/template-django-react-app
edit_uri: edit/main/docs
site_description: Documentation for how to create a simple application built using React and Django Rest Framework.
site_author: Gemma Down
dev_addr: '127.0.0.1:8001'
use_directory_urls: false
copyright: Copyright © 2022
docs_dir: docs-development
site_dir: docs-site
markdown_extensions:
- admonition
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.highlight:
linenums: true
- pymdownx.tabbed
plugins:
- search
- git-revision-date
theme:
name: material
language: en
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
toggle:
icon: material/lightbulb
name: Switch to light mode
font:
text: Raleway
code: Roboto Mono
logo: assets/logo.png
favicon: assets/favicon.ico
icon:
repo: fontawesome/brands/github
features:
- navigation.tracking
- navigation.indexes
- navigation.top
- search.suggest
extra:
homepage: https://glsdown.github.io/template-django-react-app/
social:
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/gemma-down-00992083/
name: LinkedIn
- icon: fontawesome/brands/github
link: https://github.com/glsdown/
name: Github
generator: false
extra_css:
- stylesheets/extra.css
nav:
- Overview: 'index.md'
- Customisation:
- App Settings: 'app-settings.md'
- Adding Additional Features: 'additional-features.md'
- Stylesheets: 'styling.md'
- Additional Settings:
- S3 Resource Storage: 's3-resource-storage.md'
- Elastic Beanstalk Deployment: 'elastic-beanstalk-deployment.md'
- External Tutorials:
- Original Tutorial: 'https://www.youtube.com/watch?v=Uyei2iDA4Hs'
- REST APIs: 'https://realpython.com/api-integration-in-python/'
- Full Stack Open: 'https://fullstackopen.com/en/'
- Django Quickstart: 'https://www.djangoproject.com/start/'
- Django Rest Framework (DRF): 'https://www.django-rest-framework.org/tutorial/quickstart/'
- React Quickstart: 'https://reactjs.org/tutorial/tutorial.html'
- Redux Toolkit: 'https://www.learnwithjason.dev/let-s-learn-modern-redux'
- Bootstrap 5 Documentation: 'https://getbootstrap.com/docs/5.0/getting-started/introduction/'
- React-Bootstrap: 'https://react-bootstrap.github.io/getting-started/introduction/'