No description
Find a file
2026-08-05 19:56:57 +03:00
.forgejo
.gitlab
.woodpecker partial: false 2026-08-05 18:13:48 +03:00
build lint 2026-08-05 19:40:46 +03:00
changelog.d Merge pull request 'fix-third-column' (#3536) from fix-third-column into develop 2026-08-05 16:36:34 +00:00
config
docker fix 2026-08-04 16:28:17 +03:00
docs
public/static small cleanups and lints 2026-08-04 00:29:19 +03:00
src fix cjk pinned display 2026-08-05 19:56:57 +03:00
static
test indexof 2026-08-04 20:39:32 +03:00
tools more low-hanging fruits 2026-08-04 17:26:27 +03:00
.babelrc
.browserslistrc
.dockerignore
.editorconfig
.gitattributes
.gitignore quality of life 2026-07-31 16:44:29 +03:00
.gitlab-ci.yml
.mailmap
.node-version
.stylelintrc.json
biome.json
BREAKING_CHANGES.md
CHANGELOG.md
COFE_OF_CONDUCT.md
CONTRIBUTORS.md
docker-compose.e2e.yml
eslint.config.mjs
image-1.png
image.png
index.html small cleanups and lints 2026-08-04 00:29:19 +03:00
LICENSE
package.json reorganize our CI stuff 2026-08-05 17:31:06 +03:00
postcss.config.js
preview.style.js
README.md space 2026-08-05 18:02:45 +03:00
renovate.json
sonar-project.properties nvm 2026-08-04 21:56:24 +03:00
vite.config.js lint 2026-08-01 20:55:20 +03:00
yarn.lock add code coverage 2026-07-30 21:16:11 +03:00

Pleroma-FE

Highly-customizable frontend designed for Pleroma.

screenshot

Pipeline Status Coverage Maintainability Rating Reliability Rating Security Rating Translation status

For Translators

To translate Pleroma-FE, use our weblate server: https://translate.pleroma.social/. If you need to add your language it should be added as a json file in src/i18n/ folder and added in a list within src/i18n/languages.js.

Pleroma-FE will set your language by your browser locale, but you can change language in settings.

For instance admins

You don't need to build Pleroma-FE yourself. Those using the Pleroma backend will be able to use it out of the box. Information of customizing PleromaFE settings/defaults is in our guide and in case you want to build your own custom version there's another

Build Setup

# install dependencies
npm install -g yarn
yarn

# serve with hot reload at localhost:8080
yarn dev

# build for production with minification
yarn build

# run unit tests
yarn unit

For Contributors:

You can make local build proxy requests to specific instance with an environment variable VITE_PROXY_TARGET, generally it is a good idea to also set port for that specific proxy, if you intend on testing multiple instances, i.e.:

yarn && PORT=8080 VITE_PROXY_TARGET=https://coolinstance.tld yarn dev

You can create file /config/local.json (see example) to enable some convenience dev options:

  • staticConfigPreference: makes FE's /static/config.json take preference of BE-served /api/pleroma/frontend_configurations. Only works in dev mode.

FE Build process also leaves current commit hash in global variable ___pleromafe_commit_hash so that you can easily see which pleroma-fe commit instance is running, also helps pinpointing which commit was used when FE was bundled into BE.

Configuration

Set configuration settings in AdminFE, additionally you can edit config.json. For more details see documentation.