index.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <html>
  2. <head>
  3. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link rel="stylesheet" href="static/css/rsq.css">
  7. <title>RSQueue</title>
  8. </head>
  9. <body>
  10. <div class="wrapper">
  11. <div class="content">
  12. <section class="top-nav">
  13. <div class="logo">
  14. <a class="logo" href="index.html"><h1>RSQ</h1></a>
  15. </div>
  16. <input id="menu-toggle" type="checkbox">
  17. <label class="menu-button-container" for="menu-toggle">
  18. <div class="menu-button"></div>
  19. </label>
  20. <ul class="menu">
  21. <li class="menu-here">Home</li>
  22. <li><a class="menu-link" href="description.html">Description</a></li>
  23. <li><a class="menu-link" href="documentation.html">Documentation</a></li>
  24. <li><a class="menu-link" href="rover.html">Who is Rover?</a></li>
  25. <li><a class="menu-link" href="source-code.html">Source Code</a></li>
  26. </ul>
  27. </section>
  28. <div class="body-content">
  29. <h1>Welcome to the Rescue Project!</h1>
  30. <img class="img-rover" alt="Image Rover" src="static/img/rover.png">
  31. <p>
  32. The software is called rsqueue and is pronounced "rescue".<br/>
  33. <i>Rsqueue is a light, light, lightweight queuing system to run processes/programs in parallell or in sequence on multiple nodes.</i><br/>
  34. Rsqueue is Free Software under license General Public License version 3 (<a href="https://www.gnu.org/licenses/gpl-3.0.html">GPLv3</a>).<br/>
  35. The idea is that rsqueue should be quite simple both to use, setup and configure.<br/>
  36. Rsqueue contains three different complementing programs:
  37. <ol>
  38. <li>
  39. rsq - The client program that user interacts with rsqueue, add jobs, look at status and history and more.
  40. </li>
  41. <li>
  42. rsqd - The rsqueue daemon that manages the queue and the compute nodes and distributes the jobs on the compute nodes.
  43. </li>
  44. <li>
  45. node-rsqd - The node daemon that manages processes/programs on local node. Communicates with , reports status and results to the rsqd. Receives jobs for execution from rsqd.
  46. </li>
  47. </ol>
  48. For more details see <a href="description.html">description</a>
  49. </p>
  50. <p>
  51. Hey, no JavaScript on this homepage?<br />
  52. Just to make sure that visitors can feel secure that there are no privacy conserns and that they are not tracked or harvested, this domain is 100% JavaScript free.
  53. </p>
  54. </div>
  55. </div>
  56. <footer>
  57. <div>
  58. Copyright © 2023 Marcus Pedersén
  59. <br>
  60. <br>
  61. <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">
  62. <img alt="Creative Commons License" style="border-width:0" src="static/img/cc-by-sa.png">
  63. </a>
  64. <br>
  65. This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
  66. </div>
  67. </footer>
  68. </div>
  69. </body>
  70. </html>