mirror of
https://github.com/rystaf/mlmym.git
synced 2024-11-05 06:43:21 +00:00
54bc355017
* Adding boolean setting to open links in new window and the implementation on posts and thumbnails * Fixing template syntax * Adding entry on settings form for links in new window Adding environment variable LINKS_IN_NEW_WINDOW for default setting resolves #52 --------- Co-authored-by: Nicolas Lanaro <nicolas.lanaro@thirdpartytrust.com>
27 lines
676 B
Markdown
27 lines
676 B
Markdown
# mlmym
|
|
a familiar desktop experience for [lemmy](https://join-lemmy.org).
|
|
|
|
![screenshot](https://raw.githubusercontent.com/rystaf/mlmym/main/screenshot1.png?raw=true)
|
|
|
|
## deployment
|
|
|
|
```bash
|
|
docker run -it -p "8080:8080" ghcr.io/rystaf/mlmym:latest
|
|
```
|
|
|
|
## config
|
|
Set the environment variable `LEMMY_DOMAIN` to run in single instance mode
|
|
```bash
|
|
docker run -it -e LEMMY_DOMAIN='lemmydomain.com' -p "8080:8080" ghcr.io/rystaf/mlmym:latest
|
|
```
|
|
#### default user settings
|
|
| environment variable | default |
|
|
| -------------------- | ------- |
|
|
| DARK | false |
|
|
| HIDE_THUMBNAILS | false |
|
|
| LISTING | All |
|
|
| SORT | Hot |
|
|
| COMMENT_SORT | Hot |
|
|
| LINKS_IN_NEW_WINDOW | false |
|
|
|