-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
53 lines (45 loc) · 1.33 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
# Project Information
site_name: PagerDuty DevSecOps Documentation
site_description: This guide is an introduction to DevSecOps, the cultural practice of integrating the security team into the process flow of development and operations.
site_author: PagerDuty, Inc.
site_url: https://devsecops.pagerduty.com/
# Repository
repo_url: https://github.com/PagerDuty/devsecops-docs
# Copyright
copyright: 'Copyright © PagerDuty, Inc.'
# Theme
theme:
name: pagerduty
title: 'DevSecOps'
# Contents
nav:
- Home: 'index.md'
- Introduction: 'introduction.md'
- Security Terminology: 'terminology.md'
- Cultural Changes:
- Building Empathy: 'culture/building_empathy.md'
- Team Interactions: 'culture/team_interactions.md'
- Implementation:
- Shift Security Left: 'implement/shift_left.md'
- Training and Education: 'implement/training.md'
- Additional Information:
- Secure SDLC: 'secure_sdlc.md'
- Resources and References: 'resources.md'
# Analytics
google_analytics: ['UA-8759953-1', 'auto']
# Extensions
markdown_extensions:
- toc:
permalink: '#'
- sane_lists:
- admonition:
- meta:
- pymdownx.details:
- pymdownx.extra:
- pymdownx.mark:
- pymdownx.tilde:
- pymdownx.highlight:
- pymdownx.superfences:
- pymdownx.tabbed:
# Development URL, bind to local only.
dev_addr: '127.0.0.1:8000'