About.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <template>
  2. <div class="about">
  3. <h1>About MED</h1>
  4. <p>
  5. MED Enterprise Dashboard is a web application for managing medical
  6. enterprise data.
  7. </p>
  8. <p>
  9. The frontend runs on
  10. <a
  11. href="https://notabug.org/vaeringjar/med-appointments"
  12. target="_blank"
  13. rel="noopener noreferrer"
  14. >
  15. MED Appointments</a
  16. >, available under the
  17. <a
  18. href="https://www.gnu.org/licenses/agpl-3.0.html"
  19. target="_blank"
  20. rel="noopener noreferrer"
  21. >
  22. GNU Affero General Public License v3</a
  23. >
  24. or any later backend-version. MED Appointments uses
  25. <a href="https://vuejs.org/" target="_blank" rel="noopener noreferrer"
  26. >Vue.js</a
  27. >
  28. and
  29. <a href="https://www.npmjs.com/" target="_blank" rel="noopener noreferrer"
  30. >npm</a
  31. >.
  32. </p>
  33. <p>
  34. The backend runs on
  35. <a
  36. href="https://notabug.org/vaeringjar/med-enterprise-dash"
  37. target="_blank"
  38. rel="noopener noreferrer"
  39. >
  40. MED Enterprise Dash</a
  41. >, available under the
  42. <a
  43. href="https://www.gnu.org/licenses/agpl-3.0.html"
  44. target="_blank"
  45. rel="noopener noreferrer"
  46. >
  47. GNU Affero General Public License v3</a
  48. >
  49. or any later backend-version. MED Enterprise Dash proudly uses
  50. <a
  51. href="https://trypyramid.com/"
  52. target="_blank"
  53. rel="noopener noreferrer"
  54. >Pyramid</a
  55. >, a
  56. <a
  57. href="https://www.python.org/"
  58. target="_blank"
  59. rel="noopener noreferrer"
  60. >Python</a
  61. >
  62. framework.
  63. </p>
  64. <h2>History</h2>
  65. <p>
  66. MED was originally a demo in the early spring of 2020 during the start of
  67. the COVID-19 pandemic to demonstrate the available options for quickly
  68. prototyping a series of web APIs.
  69. </p>
  70. <p>
  71. In the late spring/early summer, the source code was released. Several
  72. computer science capstone teams considered building on and extending it
  73. for their project. An honourable mention goes out to
  74. <a
  75. href="https://github.com/capstone-team-c-2020-summer"
  76. target="_blank"
  77. rel="noopener noreferrer"
  78. >Capstone Team C</a
  79. >
  80. who originally planned on doing so, but ultimately implemented their own
  81. version using different frameworks.
  82. </p>
  83. </div>
  84. </template>
  85. <script>
  86. export default {
  87. name: "About"
  88. };
  89. </script>
  90. <style scoped>
  91. .about {
  92. max-width: 640px;
  93. }
  94. </style>