How to build-hot in v1.41.0?

tag:v1.41.0
system:Ubuntu 20.04
java:openjdk-11

Port 3000 not work when I only run 'yarn build-hot', how can I access to the hot front-end?

case 1:
When I also run 'clojure -M:run', it seems run the metabase.jar, not the hot front-end.
case 2:
'lein ring server' be found in Discuss, but it doesn't work in 1.41.0 (wiki noted that)

Thanks.

Hi @Hui
The frontend and backend are two separate processes and needs to be run at the same time.
You can use yarn dev, which will run both: https://github.com/metabase/metabase/blob/master/package.json#L175

It works.
Thank you very much.