Curated list of failures in software systems, and other literature around the same topic.
See failuremodes.dev for more details
This site is built using jekyll, so you need to install it to run it locally, jekyll is based on Ruby so you need Ruby and Bundler installed on your system.
- install jekyll
- git clone
- install gems
bundle install
- start local server with
rake
orrake preview
orjekyll server --trace
if don't have rake installed. - start local server with drafts
jekyll server --trace --drafts
- Build website
rake build
orjekyll build --trace
if don't have rake installed. - Create a new post with
rake post "Title of post"
, it will create a new file in_posts
directory with current date and title of post.
Send DM to @electron0zero
Contributions are welcome, to contribue:
- follow Usage & Local Development section to setup local environment.
- Create a new branch from
master
branch. - Create a new post (with
rake post
), and create a PR tomaster
branch. - Once PR is merged, it will be deployed to failuremodes.dev automatically.