Skip to main content

WealthVN Web Deployment

Running locally

pnpm build
cargo run --manifest-path src-server/Cargo.toml

The server listens on WF_LISTEN_ADDR (default 0.0.0.0:8080).

Docker

To build the container image:

docker build -t wealthvn-web .

Run the image:

docker run -p 8080:8080 -v $(pwd)/data:/data wealthvn-web

Frontend assets are served from / and API available under /api/v1.