You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.4 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. {% extends "base.html" %}
  2. {% load staticfiles %}
  3. {% block title %}About - Healthchecks{% endblock %}
  4. {% block content %}
  5. <div class="row">
  6. <div class="col-sm-12">
  7. <h3>Who Runs This</h3>
  8. <p>
  9. Hello, my name is Pēteris Caune, I live in Riga, Latvia and do programming for living.
  10. You can contact me <a href="mailto:[email protected]">via email</a>.
  11. </p>
  12. <p>
  13. Code is on
  14. <a href="https://github.com/healthchecks/healthchecks">GitHub</a>.
  15. </p>
  16. <h3>Reliability Guarantees</h3>
  17. <p>
  18. Health Checks is currently at a very early stage as you can probably tell.
  19. </p>
  20. <p>
  21. The service is currently run on single $5 Digital Ocean box.
  22. It can and will have ocassional outages. <!-- User data should be safe however,
  23. as we are doing regular database backups to Amazon S3. -->
  24. </p>
  25. <p>
  26. If all this does not sound very inspiring,
  27. there are also alternative services:
  28. </p>
  29. <h3>Alternative Services</h3>
  30. <ul>
  31. <li><a href="https://cronitor.io/">Cronitor.io</a></li>
  32. <li><a href="https://deadmanssnitch.com/">Dead Man's Snitch</a></li>
  33. <li><a href="https://github.com/quantopian/coal-mine">Coal Mine</a></li>
  34. </ul>
  35. </div>
  36. </div>
  37. {% endblock %}