Mastodon Glitch Edition (standalone frontend)
Find a file
2024-12-19 17:15:55 +01:00
.husky Use Yarn instead of NPX for pre-commit hook (#24287) 2023-03-28 06:28:57 +02:00
app/javascript [feature] Use instance settings for media attachment cap 2024-12-19 17:15:55 +01:00
bin Move the mastodon/*_cli files to mastodon/cli/* (#24139) 2023-05-23 16:08:26 +02:00
config weeeeeeeee 2024-12-15 17:19:57 +01:00
lib/assets weeeeeeeee 2024-12-15 17:19:57 +01:00
public [feature] Use instance settings for media attachment cap 2024-12-19 17:15:55 +01:00
streaming Merge commit '774e1189d26fffd914107a4236f6287043c988f8' into glitch-soc/merge-upstream 2023-10-09 21:12:28 +02:00
.browserslistrc Add ES6 compatibility to browserslist (#18519) 2022-05-26 20:29:28 +02:00
.buildpacks
.dockerignore weeeeeeeee 2024-12-15 17:19:57 +01:00
.env.test
.eslintignore
.eslintrc.js Merge commit '774e1189d26fffd914107a4236f6287043c988f8' into glitch-soc/merge-upstream 2023-10-09 21:12:28 +02:00
.foreman
.gitattributes
.gitignore Remove Capistrano (#27295) 2023-10-06 11:33:43 +02:00
.nvmrc Update dependency node to 20.8 (#27201) 2023-09-29 09:50:15 +02:00
.prettierignore Merge commit '640421f661ee4d7e76a2aab607e7b15687940b6f' into glitch-soc/merge-upstream 2023-10-08 17:30:48 +02:00
.prettierrc.js Use Prettier for ESLint formatting TypeScript (#23631) 2023-05-09 19:02:12 +02:00
.profile Make it possible to upload audio and video to Heroku app (#24866) 2023-05-05 14:41:07 +02:00
.rspec
.slugignore
.yarnclean Setup Husky and lint-stage for commit fixing (#23308) 2023-03-27 05:17:19 +02:00
app.json Make enable_starttls configurable by envvars (#20321) 2022-11-10 21:06:21 +01:00
AUTHORS.md Update AUTHORS.md (#27018) 2023-09-21 14:42:15 +02:00
babel.config.js Update babel monorepo to v7.22.5 (#25405) 2023-06-14 09:22:54 +02:00
CHANGELOG.md Bump version to v4.2.0 (#27017) 2023-09-21 16:51:32 +02:00
Dockerfile weeeeeeeee 2024-12-15 17:19:57 +01:00
ide-helper.js
jest.config.js Merge commit 'b0780cfeeda641645ea65da257a72ec507e71647' into glitch-soc/merge-upstream 2023-06-10 15:32:29 +02:00
jsconfig.json Correct prettier calls for YML/JSON (#21832) 2022-12-03 12:05:35 +09:00
LICENSE
nginx.conf weeeeeeeee 2024-12-15 17:19:57 +01:00
package.json weeeeeeeee 2024-12-15 17:19:57 +01:00
postcss.config.js Update PostCSS dependencies (#23835) 2023-03-15 04:01:10 +01:00
README.md Update README 2023-10-12 20:26:48 +02:00
stylelint.config.js Merge branch 'main' into glitch-soc/merge-upstream 2023-04-29 10:44:56 +02:00
tsconfig.json Fix interaction modal being broken because of glitch-soc's theming system 2023-07-30 16:45:50 +02:00
yarn.lock weeeeeeeee 2024-12-15 17:19:57 +01:00

Mastodon Glitch Edition (standalone frontend)

This is a somewhat hacky fork of glitch-soc that adds standalone support (meaning your browser can OAuth against an arbitrary instance). It's currently tested to work (for the most part) with Iceshrimp and GoToSocial (and obviously Mastodon).

To try this out, go to masto-fe.iceshrimp.dev, type in your instance domain name (for split domain setups, use the web domain) & press the button.

To set this up yourself, clone the repo into e.g. /home/user/masto-fe-standalone and run yarn && yarn build:production.

Then configure nginx for a subdomain like this:

map $http_upgrade $connection_upgrade {
        default upgrade;
        ''      close;
}

server {
        include sites/example.com/inc/ssl.conf;
        server_name masto.example.com;

        location / {
                root /home/user/masto-fe-standalone/public/;
                index index.html;
                try_files $uri /index.html;
        }
}

And open https://masto.example.com in your browser, type in your instance domain, press the button & follow the OAuth flow.

Should anything break, open https://masto.example.com/logout.html or clear local storage manually.