failure-modes
failure-modes copied to clipboard
Collection of how and why software systems fail
failure-modes
Curated list of failures in software systems, and other literature around the same topic.
See failuremodes.dev for more details
Usage & Local Development
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
rakeorrake previeworjekyll server --traceif don't have rake installed. - start local server with drafts
jekyll server --trace --drafts - Build website
rake buildorjekyll build --traceif don't have rake installed. - Create a new post with
rake post "Title of post", it will create a new file in_postsdirectory with current date and title of post.
Questions, or concerns?
Send DM to @electron0zero
Contributing
Contributions are welcome, to contribue:
- follow Usage & Local Development section to setup local environment.
- Create a new branch from
masterbranch. - Create a new post (with
rake post), and create a PR tomasterbranch. - Once PR is merged, it will be deployed to failuremodes.dev automatically.