A social media frontend with a focus on custom branding and ease of use. https://soapbox.pub
 
 
 
 
 
Go to file
marcin mikołajczak 639ba856ab Merge branch 'translations' into 'develop'
Support translation feature

See merge request soapbox-pub/soapbox!1852
2022-11-05 22:08:59 +00:00
.github Move FUNDING.yml to .github/FUNDING.yml 2022-04-18 16:20:40 -05:00
.gitlab Add default MR template 2022-08-08 16:02:25 -04:00
.husky Use lint-staged with Husky to only lint changed files 2021-09-15 11:00:50 -05:00
.vscode soapbox-pub/soapbox-fe --> soapbox-pub/soapbox 2022-09-04 15:15:54 -05:00
app Merge remote-tracking branch 'soapbox/develop' into translations 2022-11-05 17:37:36 +01:00
custom Allow custom module imports 2022-05-09 17:57:15 -05:00
docs soapbox-pub/soapbox-fe --> soapbox-pub/soapbox 2022-09-04 15:15:54 -05:00
installation Docker: open fallback backend at :4444 2022-09-04 15:02:12 -05:00
jest Upgrade Jest to v28 2022-07-05 11:30:08 -05:00
tailwind gradient-purple, gradient-blue --> gradient-start, gradient-end 2022-05-07 15:23:43 -05:00
types/redux-immutable FIX ROOT STATE TYPE!!!!! 2022-07-06 15:54:30 -05:00
webpack git-loader: import type 2022-10-14 16:00:18 -05:00
.dockerignore dockerignore: .git 2022-09-04 12:54:41 -05:00
.editorconfig Add .editorconfig 2020-04-11 15:02:30 -05:00
.env.example Patron updates 2020-06-30 17:33:21 -05:00
.eslintignore eslintignore: /custom/** 2022-05-16 10:08:50 -05:00
.eslintrc.js Fix conflict between eslint / typescript 2022-09-27 09:59:01 -04:00
.gitignore Produce a junit.xml during test:coverage 2022-06-13 13:26:51 -05:00
.gitlab-ci.yml GitLab CI: tag `dind` 2022-10-09 16:33:10 +00:00
.lintstagedrc.json Revert "Merge branch 'revert-f59d977a' into 'develop'" 2022-02-27 00:13:35 +00:00
.stylelintrc.json Start adding dark mode 2022-03-23 19:18:37 -05:00
.tool-versions Upgrade to Node 18 2022-06-01 13:22:49 -05:00
CHANGELOG.md soapbox-pub/soapbox-fe --> soapbox-pub/soapbox 2022-09-04 15:15:54 -05:00
COFE_OF_CONDUCT.md Replace code of conduct with cofe of conduct 2020-05-29 00:57:07 -05:00
Dockerfile Docker: open fallback backend at :4444 2022-09-04 15:02:12 -05:00
Dockerfile.dev Support Docker local development 2022-10-27 12:09:12 -05:00
LICENSE Add LICENSE and README 2020-03-28 16:06:29 -05:00
README.md soapbox-pub/soapbox-fe --> soapbox-pub/soapbox 2022-09-04 15:15:54 -05:00
app.json Add app.json 2022-09-01 17:11:57 -05:00
babel.config.js Remove @ decorators 2022-11-03 15:33:51 -05:00
compose-dev.yaml Support Docker local development 2022-10-27 12:09:12 -05:00
dangerfile.ts Danger: modified --> edited 2022-08-05 11:16:33 -05:00
heroku.yml Add heroku.yml so it uses the Dockerfile 2022-09-01 17:21:05 -05:00
jest.config.js Update tests for Jest v28, apply uuid hack 2022-07-09 14:25:19 -05:00
jsdoc.conf.js JSDoc scaffolding 2021-09-05 14:49:38 -05:00
package.json Merge remote-tracking branch 'origin/develop' into remove-at-decorators 2022-11-04 10:22:48 -05:00
postcss.config.js Add Tailwind 2022-03-19 13:24:16 -05:00
renovate.json Renovate: add GitHub access token for release notes 2020-10-05 15:51:58 -05:00
soapbox-screenshot.png Update README 2022-03-17 14:45:40 -05:00
tailwind.config.js Add types to tailwind.config.js 2022-10-24 17:24:34 -05:00
translationRunner.js Move translationRunner.js out of /webpack directory 2022-10-14 15:54:37 -05:00
tsconfig.json Remove @ decorators 2022-11-03 15:33:51 -05:00
webpack.config.ts Convert Webpack configuration to TypeScript 2022-10-14 15:32:26 -05:00
yarn.lock Merge remote-tracking branch 'origin/develop' into remove-at-decorators 2022-11-04 10:22:48 -05:00

README.md

Soapbox

Soapbox Screenshot

Soapbox is a frontend for Mastodon and Pleroma with a focus on custom branding and ease of use.

Try it out

Visit https://fe.soapbox.pub/ and point it to your favorite instance.

🚀 Deploy on Pleroma

Installing Soapbox on an existing Pleroma server is extremely easy. Just ssh into the server and download a .zip of the latest build:

curl -L https://gitlab.com/soapbox-pub/soapbox/-/jobs/artifacts/develop/download?job=build-production -o soapbox.zip

Then unpack it into Pleroma's instance directory:

busybox unzip soapbox.zip -o -d /opt/pleroma/instance

That's it! 🎉 Soapbox is installed. The change will take effect immediately, just refresh your browser tab. It's not necessary to restart the Pleroma service.

To remove Soapbox and revert to the default pleroma-fe, simply rm /opt/pleroma/instance/static/index.html (you can delete other stuff in there too, but be careful not to delete your own HTML files).

🐘 Deploy on Mastodon

See Installing Soapbox over Mastodon.

How does it work?

Soapbox is a single-page application (SPA) that runs entirely in the browser with JavaScript.

It has a single HTML file, index.html, responsible only for loading the required JavaScript and CSS. It interacts with the backend through XMLHttpRequest (XHR).

Here is a simplified example with Nginx:

location /api {
  proxy_pass http://backend;
}

location / {
  root /opt/soapbox;
  try_files $uri index.html;
}

(See mastodon.conf for a full example.)

Soapbox incorporates much of the Mastodon API, Pleroma API, and more. It detects features supported by the backend to provide the right experience for the backend.

Running locally

To get it running, just clone the repo:

git clone https://gitlab.com/soapbox-pub/soapbox.git
cd soapbox

Ensure that Node.js and Yarn are installed, then install dependencies:

yarn

Finally, run the dev server:

yarn dev

That's it! 🎉

It will serve at http://localhost:3036 by default.

You should see an input box - just enter the domain name of your instance to log in.

Tip: you can even enter a local instance like http://localhost:3000!

Troubleshooting: ERROR: NODE_ENV must be set

Create a .env file if you haven't already.

cp .env.example .env

And ensure that it contains NODE_ENV=development. Try again.

Troubleshooting: it's not working!

Run node -V and compare your Node.js version with the version in .tool-versions. If they don't match, try installing asdf.

Local Dev Configuration

The following configuration variables are supported supported in local development. Edit .env to set them.

All configuration is optional, except NODE_ENV.

NODE_ENV

The Node environment. Soapbox checks for the following options:

  • development - What you should use while developing Soapbox.
  • production - Use when compiling to deploy to a live server.
  • test - Use when running automated tests.

BACKEND_URL

URL to the backend server. Can be http or https, and can include a port. For https, be sure to also set PROXY_HTTPS_INSECURE=true.

Default: http://localhost:4000

PROXY_HTTPS_INSECURE

Allows using an HTTPS backend if set to true.

This is needed if BACKEND_URL is set to an https:// value. More info.

Default: false

Yarn Commands

The following commands are supported. You must set NODE_ENV to use these commands. To do so, you can add the following line to your .env file:

NODE_ENV=development

Local dev server

  • yarn dev - Run the local dev server.

Building

  • yarn build - Compile without a dev server, into /static directory.

Translations

  • yarn manage:translations - Normalizes translation files. Should always be run after editing i18n strings.

Tests

  • yarn test:all - Runs all tests and linters.

  • yarn test - Runs Jest for frontend unit tests.

  • yarn lint - Runs all linters.

  • yarn lint:js - Runs only JavaScript linter.

  • yarn lint:sass - Runs only SASS linter.

Contributing

We welcome contributions to this project. To contribute, see Contributing to Soapbox.

Customization

Soapbox supports customization of the user interface, to allow per-instance branding and other features. Some examples include:

  • Instance name
  • Site logo
  • Favicon
  • About page
  • Terms of Service page
  • Privacy Policy page
  • Copyright Policy (DMCA) page
  • Promo panel list items, e.g. blog site link
  • Soapbox extensions, e.g. Patron module
  • Default settings, e.g. default theme

More details can be found in Customizing Soapbox.

License & Credits

Soapbox is based on Gab Social's frontend which is in turn based on Mastodon's frontend.

Soapbox is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Soapbox is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along with Soapbox. If not, see https://www.gnu.org/licenses/.