aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client-web/makefile2
-rw-r--r--readme.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/client-web/makefile b/client-web/makefile
index cc36a8e..ae70bda 100644
--- a/client-web/makefile
+++ b/client-web/makefile
@@ -1,4 +1,4 @@
-public/bundle.js: source/*
+public/assets/bundle.js: source/*
deno bundle --no-check --unstable source/index.ts > $@
diff --git a/readme.md b/readme.md
index 42e921c..7dfd330 100644
--- a/readme.md
+++ b/readme.md
@@ -27,7 +27,7 @@ For self-hosting, this script should do:
```
git clone https://codeberg.org/metamuffin/keks-meet.git
cd keks-meet
-deno bundle --no-check client-web/source/index > client-web/public/assets/bundle.js
+make -C client-web
cd server
cargo run --release
```