The backend of a gist server written in Rust
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

index.tera 795B

123456789101112131415161718192021222324252627
  1. <html>
  2. <head>
  3. <title>bngl.ws</title>
  4. <style>
  5. .container {
  6. margin: auto;
  7. max-width: 500px;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <div class="container">
  13. <h1>bngl.ws</h1>
  14. <p>
  15. bngl.ws is a pastebin service that you can access from the command
  16. line. If you have
  17. <a href="https://doc.rust-lang.org/cargo/getting-started/installation.html" target="_blank">
  18. cargo</a> installed, you can install the CLI client by cloning the
  19. <a href="https://git.sr.ht/~simulacrumparty/bnglws-client" target="_blank">client repo</a>
  20. and running
  21. <pre>cargo install --path .</pre>
  22. Then, you can create snippets by running something like
  23. <pre>echo 'Hello world' | bngl new --name "First snippet"</pre>
  24. </p>
  25. </div>
  26. </body>
  27. </html>