Isso Comments API

MD
R
Markdown

https://isso-comments.de/ Isso Server running at: 8081 Test Web Server running at: 8080

// ================================================================================================================================ // ISSO SERVER 1 - pip3 install isso 2 - touch comments.db 3 - touch isso.cfg

[general]
dbpath = /Users/claudioteixeira/dev/isso/comments.db
host = http://localhost:8080/
max-age = 15m

[moderation]
enabled = false
purge-after = 30d

[admin]
enabled = false
password = password

[server]
listen = http://0.0.0.0:8081

4- run isso -c isso.cfg

// ================================================================================================================================ // TEST CLIENT 1- touch index.html 2- python3 -m http.server 8080

<!DOCTYPE html>
<html>
  <head>
    <title>My Web Page</title>
  </head>
  <body>
    <h1>Welcome to my web page!</h1>

    <div id="isso-thread"></div>

    <script
      data-isso="//localhost:8081/"
      src="//localhost:8081/js/embed.min.js"
    ></script>


  </body>
</html>

Created on 10/27/2023