blob: b66ac14d3547d402bcc46ce2545c36667d6960f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Managing frontends
`mix pleroma.frontend install <frontend> --path <path>`
Install locally built frontend.
Currently supported `<frontend>` values:
- [admin](https://git.pleroma.social/pleroma/admin-fe)
- [kenoma](http://git.pleroma.social/lambadalambda/kenoma)
- [mastodon](http://git.pleroma.social/pleroma/mastofe)
- [pleroma](http://git.pleroma.social/pleroma/pleroma-fe)
The complete process of installing frontend would be following:
- download a frontend:
```bash
git clone https://git.pleroma.social/pleroma/pleroma-fe.git
```
- build the frontend
```bash
cd pleroma-fe && yarn && yarn build
```
- run the following command inside your Pleroma instance root directory:
```bash
mix pleroma.frontend install pleroma --path /path/to/pleroma-fe
```
|