https://github.com/lemmynet/joinlemmy-site
Official website for Lemmy
https://github.com/lemmynet/joinlemmy-site
Last synced: about 1 year ago
JSON representation
Official website for Lemmy
- Host: GitHub
- URL: https://github.com/lemmynet/joinlemmy-site
- Owner: LemmyNet
- License: agpl-3.0
- Created: 2020-09-28T04:21:03.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-27T08:47:38.000Z (about 1 year ago)
- Last Synced: 2025-03-29T14:08:02.271Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://join-lemmy.org/
- Size: 8.06 MB
- Stars: 39
- Watchers: 5
- Forks: 63
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# JoinLemmy-site
## Local Development
- Install [pnpm](https://pnpm.io/installation)
- 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`, then `pnpm start`
- Open `http://localhost:1234/` in the browser
## Docker Development
- 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