ucs/frontend
2025-03-13 23:36:54 +02:00
..
dist frontend 2025-03-13 23:36:54 +02:00
src frontend 2025-03-13 23:36:54 +02:00
.gitignore frontend 2025-03-13 23:36:54 +02:00
eslint.config.js frontend 2025-03-13 23:36:54 +02:00
index.html frontend 2025-03-13 23:36:54 +02:00
package-lock.json frontend 2025-03-13 23:36:54 +02:00
package.json frontend 2025-03-13 23:36:54 +02:00
README.md frontend 2025-03-13 23:36:54 +02:00
vite.config.js frontend 2025-03-13 23:36:54 +02:00

Universal Comments System

Build

Build and run on port 3002.

(npm run build; cd dist/assets; mv *.js index.js; mv *.css index.css; warp --port 3002)

Use

In your HTML, add the following:

<div id="ucs-comments"
        data-element="ucs-comments"
        data-ucs_url="[BACKEND_URL]"
        data-site="[WEBSITE]"
        data-path="[PAGE_PATH]"
     ></div>
<script type="module" src="[FRONTEND_URL]/index.js"></script>
<link rel="stylesheet" type="text/css" href="[FRONTEND_URL]/index.css">