diff options
author | metamuffin <metamuffin@disroot.org> | 2022-09-08 17:05:16 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-09-08 17:05:16 +0200 |
commit | 7c039b507695d0dbb8d00e583f7ce29b6925dcdc (patch) | |
tree | 45448d5ba901e306020874a65f4465510c5142c8 | |
parent | 922149f0cd84c9aa5753d5b3bc62901c94b9b5e3 (diff) | |
download | keks-meet-7c039b507695d0dbb8d00e583f7ce29b6925dcdc.tar keks-meet-7c039b507695d0dbb8d00e583f7ce29b6925dcdc.tar.bz2 keks-meet-7c039b507695d0dbb8d00e583f7ce29b6925dcdc.tar.zst |
use makefile for build instructions
-rw-r--r-- | client-web/makefile | 2 | ||||
-rw-r--r-- | readme.md | 2 |
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 > $@ @@ -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 ``` |