Go to file
Marius Pana 09d0992d9d changed travis-ci build link 2017-01-13 20:17:41 +02:00
about Deployed c6298fc with MkDocs version: 0.16.1 2017-01-13 20:01:40 +02:00
after Deployed c6298fc with MkDocs version: 0.16.1 2017-01-13 20:01:40 +02:00
assets Deployed 4f72782 with MkDocs version: 0.16.1 2017-01-10 09:54:19 +02:00
before Deployed c6298fc with MkDocs version: 0.16.1 2017-01-13 20:01:40 +02:00
during Deployed c6298fc with MkDocs version: 0.16.1 2017-01-13 20:01:40 +02:00
mkdocs Deployed ac0e045 with MkDocs version: 0.16.1 2017-01-12 13:34:14 +02:00
oncall Deployed c6298fc with MkDocs version: 0.16.1 2017-01-13 20:01:40 +02:00
training Deployed c6298fc with MkDocs version: 0.16.1 2017-01-13 20:01:40 +02:00
.DS_Store Deployed 4f72782 with MkDocs version: 0.16.1 2017-01-10 09:54:19 +02:00
.nojekyll Deployed 4f72782 with MkDocs version: 0.16.1 2017-01-10 09:54:19 +02:00
.travis.yml changed travis-ci build link 2017-01-13 20:17:41 +02:00
404.html Deployed c6298fc with MkDocs version: 0.16.1 2017-01-13 20:01:40 +02:00
README.md changed travis-ci build link 2017-01-13 20:17:41 +02:00
index.html Deployed c6298fc with MkDocs version: 0.16.1 2017-01-13 20:01:40 +02:00
sitemap.xml Deployed c6298fc with MkDocs version: 0.16.1 2017-01-13 20:01:40 +02:00

README.md

Spearhead Systems Issue Response Documentation Build Status

This is a public version of the Issue Response process used at Spearhead Ststems. It is based on the PagerDuty Incident Response process, modified to fit our specific requirements. It is used to prepare new employees for on-call responsibilities, and provides information not only on preparing for an issue (incident or service request), 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.spearhead.systems.

Spearhead Systems Issue Response Documentation

Development

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

  1. Install MkDocs. pip install mkdocs
  2. Install the MkDocs Material theme. pip install mkdocs-material
  3. To test locally, run mkdocs serve from the project directory.

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.