-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
154 lines (131 loc) · 3.85 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
143
144
145
146
147
148
149
150
151
152
153
154
# Site information
site_name: "Knowledgebase Repository"
site_author: "Saiprasad Balasubramanian"
site_description: "Site Description Here"
#site_url: 'https://saiprasad.io'
edit_uri: ""
copyright: "© Saiprasad Balasubramanian"
site_dir: "build/"
# Theme
theme:
name: material
language: "en"
font:
text: "Ubuntu"
code: "Ubuntu Mono"
palette:
primary: "blue"
accent: "indigo"
feature:
"tabs": false
icon: "code"
# custom_dir: 'theme'
# site_dir: ''
# Repo Details
repo_url: "https://github.com/backtrackbaba/knowledgebase"
# Extra Configuration for Material Theme
extra:
social:
- type: "github"
link: "https://github.com/backtrackbaba"
- type: "twitter"
link: "https://twitter.com/sai_cosmo"
- type: "linkedin"
link: "https://linkedin.com/in/saiprasadbala"
- type: "facebook"
link: "https://facebook.com/sai.cosmo"
- type: "terminal"
link: "https://saiprasad.io"
- type: "server"
link: "https://stackoverflow.com/users/8044551/saiprasad-balasubramanian"
feature:
tabs: true
# Markdown Extensions
markdown_extensions:
- admonition
- codehilite:
"linenums": "true"
"pygments_style": "xcode"
- pymdownx.emoji:
"emoji_generator": !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
"custom_checkbox": true
- meta
# Google Analytics
google_analytics:
- "UA-XXXXXXXX-X"
- "auto"
dev_addr: "127.0.0.1:8080"
# Site Navigation
nav:
- Home: "index.md"
- CMS:
- WordPress: "cms/wordpress.md"
- Ghost: "cms/ghost.md"
- Coding:
- "Editors":
- Nano: "coding/editors/nano.md"
- Sublime: "coding/editors/sublime.md"
- VIM: "coding/editors/vim.md"
- VSCode: "coding/editors/vscode.md"
- "IDE's":
- Pycharm: "coding/ide/pycharm.md"
- "Linters":
- ESLint: "coding/linters/eslint.md"
- Flake8: "coding/linters/flake8.md"
- Pylint: "coding/linters/pylint.md"
- Database:
- ORM:
- "Django ORM": "database/orm/django-orm.md"
- "SQL Alchemy": "database/orm/sql-alchemy.md"
- "PostgreSQL": "database/db/postgresql.md"
- "Redis": "database/db/redis.md"
- devOps:
- AWS:
- "EC2": "devops/aws/ec2.md"
- "Route53": "devops/aws/route53.md"
- "Docker":
- Intro: "devops/docker.md"
- SDK:
- Python: "devops/docker/sdk/python.md"
- Nginx:
- "Installation": "devops/nginx/installation.md"
- "Docker": "devops/nginx/docker.md"
- Linux:
- Utilities:
- "Screen": "linux/utilities/screen.md"
- "SSH": "linux/utilities/ssh.md"
- "UFW": "linux/utilities/ufw.md"
- "User Management": "linux/utilities/user-management.md"
- "Zip": "linux/utilities/zip.md"
- Machine Learning:
- "ML Algorithms": "ml/ml-algo.md"
- "Pandas": "ml/pandas.md"
- "Numpy": "ml/numpy.md"
- Protocol Buffers:
- "Protobuf": "protocol-buffers/protobuf.md"
- Python:
- Libraries:
- "OS": "python/libraries/os.md"
- "Redis": "python/libraries/redis.md"
- "Requests": "python/libraries/requests.md"
- "Signal": "python/libraries/signal.md"
- "Click": "python/click.md"
- "Django": "python/django.md"
- "Flask": "python/flask.md"
- "Jupyter": "python/jupyter.md"
- "Libraries": "python/python-libraries.md"
- "Mkdocs": "python/mkdocs.md"
- "Python": "python/python.md"
- "Python Libraries": "python/python-libraries.md"
- Ruby:
- "Ruby": "ruby/ruby.md"
- "Dashing": "ruby/dashing.md"
- Testing:
- "Postman": "testing/postman.md"
- Version Control:
- "Git": "version-control/git.md"