HTTP header improvements (#294)
[akkoma] / docs / docs / installation / frontends.include
1 #### Installing Frontends
2
3 Once your backend server is functional, you'll also want to
4 probably install frontends.
5
6 These are no longer bundled with the distribution and need an extra
7 command to install.
8
9 For most installations, the following will suffice:
10
11 === "OTP"
12 ```sh
13 ./bin/pleroma_ctl frontend install pleroma-fe --ref stable
14 # and also, if desired
15 ./bin/pleroma_ctl frontend install admin-fe --ref stable
16 ```
17
18 === "From Source"
19 ```sh
20 mix pleroma.frontend install pleroma-fe --ref stable
21 mix pleroma.frontend install admin-fe --ref stable
22 ```
23
24 === "Docker"
25 ```sh
26 ./docker-resources/manage.sh mix pleroma.frontend install pleroma-fe --ref stable
27 ./docker-resources/manage.sh mix pleroma.frontend install admin-fe --ref stable
28 ```
29
30 For more customised installations, refer to [Frontend Management](../../configuration/frontend_management)
31