- Install pnpm
- Get the code with
git clone https://github.com/LemmyNet/joinlemmy-site.git --recursive
(the recursive part is important to fetch git submodules) - Run
pnpm install
, thenpnpm start
- Open
http://localhost:1234/
in the browser
- Install Docker
- Get the code with
git clone https://github.com/LemmyNet/joinlemmy-site.git --recursive
(the recursive part is important to fetch git submodules) - Build the image with
docker build . -t joinlemmy-site
- Start it with
docker run -p 1234:1234 joinlemmy-site
- Open
http://localhost:1234/
in the browser