Track3 2 anni fa
parent
commit
1790663a5f
5 ha cambiato i file con 18 aggiunte e 18 eliminazioni
  1. 5 0
      .env.example
  2. 10 15
      README.md
  3. 1 1
      deno.json
  4. 1 1
      index.html
  5. 1 1
      src/App.svelte

+ 5 - 0
.env.example

@@ -0,0 +1,5 @@
+ALLOW_ORIGIN=http://localhost:5173,https://example.com
+PB_URL=http://localhost:8090
+PB_USER=username
+PB_PASSWORD=password
+WEBHOOK_URL=

+ 10 - 15
README.md

@@ -2,31 +2,26 @@
 
 This project is a WIP.
 
-## Running
+💡You need to have Deno v1.28.0 or later intalled to run this repo.
 
-You need to have Deno v1.28.0 or later intalled to run this repo.
+## Back-end
 
 Start a dev server:
 
 ```
-$ deno task dev
+$ deno task dev-server
 ```
 
-## Deploy
+## Front-end
 
-Build production assets:
+Start a dev server:
 
 ```
-$ deno task build
+$ deno task dev
 ```
 
-## Notes
-
-- You need to use `.mjs` or `.mts` extension for the `vite.config.[ext]` file.
-
-## Papercuts
-
-Currently there's a "papercut" for Deno users:
+Build production assets:
 
-- peer dependencies need to be referenced in `vite.config.js` - in this example
-  it is only `svelte` package that needs to be referenced
+```
+$ deno task build
+```

+ 1 - 1
deno.json

@@ -4,7 +4,7 @@
     "build": "deno run -A --node-modules-dir npm:vite build",
     "preview": "deno run -A --node-modules-dir npm:vite preview",
     "serve": "deno run --allow-net --allow-read https://deno.land/std@0.157.0/http/file_server.ts dist/",
-    "dev-server": "deno run --allow-net --allow-read --allow-env server.ts"
+    "dev-server": "deno run --allow-net --allow-read --allow-env --watch server.ts"
   },
   "compilerOptions": {
     "lib": [

+ 1 - 1
index.html

@@ -6,7 +6,7 @@
     <title>Svelte Comment</title>
   </head>
   <body>
-    <div id="comments" data-url="http://localhost:8000/"></div>
+    <div id="comments" data-url="http://localhost:8000"></div>
     <script type="module" src="/src/main.ts"></script>
   </body>
 </html>

+ 1 - 1
src/App.svelte

@@ -5,7 +5,7 @@
 
   const url = document.getElementById('comments').dataset.url;
   setContext("pageUri", window.location.pathname);
-  setContext("reqUrl", `${url}?uri=${encodeURIComponent(getContext("pageUri"))}`);
+  setContext("reqUrl", `${url}/?uri=${encodeURIComponent(getContext("pageUri"))}`);
   let count: number;
   let comments = []