- Install
pnpm pnpm ito install deps- Maybe have to install node with
pnpm env use --global latestfor latest version - Build with
pnpm build - Serve dist directory with whatever webserver you want. It is static.
With docker the following compose file will work for Caddy. (Note the included docker-compose file uses port 4242 on the host).
services:
meowjam:
image: caddy:2-alpine
ports:
- "80:80"
volumes:
- ./dist:/usr/share/caddy:ro
- ./caddy_data:/data
restart: unless-stoppedA rust, web view based version of the app (as it was originally developed) can be found on the tauri branch.