All Projects → PagerDuty → Incident Response Docs

PagerDuty / Incident Response Docs

Licence: apache-2.0
PagerDuty's Incident Response Documentation.

Projects that are alternatives of or similar to Incident Response Docs

Thehivedocs
Documentation of TheHive
Stars: ✭ 353 (-58.91%)
Mutual labels:  documentation, incident-response
Wazuh Documentation
Wazuh - Project documentation
Stars: ✭ 82 (-90.45%)
Mutual labels:  documentation, incident-response
Knowledgebase
Knowledge is Power
Stars: ✭ 17 (-98.02%)
Mutual labels:  documentation
Parse Code Context
Parse code context in a single line of javascript, for functions, variable declarations, methods, prototype properties, prototype methods etc.
Stars: ✭ 7 (-99.19%)
Mutual labels:  documentation
Doc Hunt
Keep your documentation up to date by tracking changes in your source code
Stars: ✭ 24 (-97.21%)
Mutual labels:  documentation
Api schema
DSL for describing APIs and generate swagger json
Stars: ✭ 18 (-97.9%)
Mutual labels:  documentation
Platform Documentation
Core Platform API Documentation & Tutorials
Stars: ✭ 25 (-97.09%)
Mutual labels:  documentation
Entityframework.docs
Documentation for Entity Framework Core and Entity Framework 6
Stars: ✭ 888 (+3.38%)
Mutual labels:  documentation
Widdershins
OpenAPI / Swagger, AsyncAPI & Semoasa definitions to (re)Slate compatible markdown
Stars: ✭ 856 (-0.35%)
Mutual labels:  documentation
Wiki
Official repository for OCS Inventory documentaiton
Stars: ✭ 23 (-97.32%)
Mutual labels:  documentation
Spellingbee
🐝 ➕ Correct spelling of README's.
Stars: ✭ 26 (-96.97%)
Mutual labels:  documentation
Cortex4py
Python API Client for Cortex
Stars: ✭ 22 (-97.44%)
Mutual labels:  incident-response
Docker Cheat Sheet
A collection of recipes for docker.
Stars: ✭ 18 (-97.9%)
Mutual labels:  documentation
Immutablejs For Beginners
This documentation is trying to help people who starts using FB immutable.js but at the same time feeling confused by the original documentation
Stars: ✭ 25 (-97.09%)
Mutual labels:  documentation
Fed.ialis.me
a guide to the fediverse -- WIP
Stars: ✭ 17 (-98.02%)
Mutual labels:  documentation
Markdown Guide
The comprehensive Markdown reference guide.
Stars: ✭ 835 (-2.79%)
Mutual labels:  documentation
Everything Curl
The book documenting the curl project, the curl tool, libcurl and everything related to this.
Stars: ✭ 885 (+3.03%)
Mutual labels:  documentation
Aruba
Test command-line applications with Cucumber-Ruby, RSpec or Minitest. The most up to date documentation can be found on Cucumber.Pro (https://app.cucumber.pro/projects/aruba)
Stars: ✭ 900 (+4.77%)
Mutual labels:  documentation
Wsl Programs
A community powered list of programs that work (and those that don't) on the Windows subsystem for Linux
Stars: ✭ 931 (+8.38%)
Mutual labels:  documentation
Pdoc
API Documentation for Python Projects
Stars: ✭ 853 (-0.7%)
Mutual labels:  documentation

PagerDuty Incident Response Documentation Build Status

This is a public version of the Incident Response process used at PagerDuty. It is also used to prepare new employees for on-call responsibilities, and provides information not only on preparing for an incident, but also what to do during and after. See the about page for more information on what this documentation is and why it exists.

You can view the documentation directly in this repository, or rendered as a website at https://response.pagerduty.com.

PagerDuty Incident Response Documentation

Development

We use MkDocs to create a static site from this repository. For local development,

  1. Install v0.1.0 of MkDocs Bootswatch pip install mkdocs-bootswatch==0.1.0
  2. Install v0.1.1 of MkDocs Bootstrap pip install mkdocs-bootstrap==0.1.1
  3. Install v0.15.3 of MkDocs. pip install mkdocs==0.15.3
  4. Install v0.2.4 of the MkDocs Material theme. pip install mkdocs-material==0.2.4
  5. Install v6.2.1 of MkDocs PyMdown Extensions. pip install pymdown-extensions==6.2.1
  6. To test locally, run mkdocs serve from the project directory.

Docker Option

From the root directory of this repo...

  1. docker build -t mkdocs .
  2. docker run -v `pwd`:/docs/ -p 8080:8080 mkdocs
  3. Open http://localhost:8080 to see changes in your browser

Deploying

  1. Run mkdocs build --clean to produce the static site for upload.

  2. Upload the site directory to S3 (or wherever you would like it to be hosted).

     aws s3 sync ./site/ s3://[BUCKET_NAME] \
       --acl public-read \
       --exclude "*.py*" \
       --delete
    

License

Apache 2 (See LICENSE file)

Contributing

Thank you for considering contributing! If you have any questions, just ask - or submit your issue or pull request anyway. The worst that can happen is we'll politely ask you to change something. We appreciate all friendly contributions.

Here is our preferred process for submitting a pull request,

  1. Fork it ( https://github.com/PagerDuty/incident-response-docs/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].