This repository has been archived on 2024-05-13. You can view files and clone it, but cannot push or open issues or pull requests.
share2fedi/README.md

186 lines
5.5 KiB
Markdown
Raw Permalink Normal View History

2023-09-02 10:17:15 -04:00
<!--
This README is part of Share₂Fedi
https://github.com/kytta/share2fedi
SPDX-FileCopyrightText: © 2023 Nikita Karamov <me@kytta.dev>
SPDX-License-Identifier: CC0-1.0
-->
2022-11-14 07:34:13 -05:00
<h1 align="center"><img src="assets/share2fedi.svg" width="520" height="160" alt="Share2Fedi"></h1>
2020-09-23 10:08:21 -04:00
2022-11-14 07:34:13 -05:00
> Instance-agnostic share page for the Fediverse.
2020-09-23 12:39:38 -04:00
2023-08-27 18:31:43 -04:00
**[Share₂Fedi]** (pronounced share-to-fedi) allows you to share stuff on
Mastodon, Misskey, Friendica, and other federated social networks,
2023-08-27 18:31:43 -04:00
instance-agnostic. Just type in the post text and the instance URL, and click
2023-08-30 06:24:46 -04:00
Post!
2021-01-30 09:12:32 -05:00
2023-03-17 09:06:30 -04:00
Or, open this page with the prefilled `text` URL parameter—it will be
2023-08-29 11:00:53 -04:00
automatically inserted into the text field. The same goes for the `instance` and
`lang` URL parameters. This can be used to build custom share buttons for the
federated social networks:
2020-09-23 12:39:38 -04:00
```html
2023-08-27 18:31:43 -04:00
<a href="https://s2f.kytta.dev/?text=Hello%20world!&instance=mastodon.xyz">
2022-11-14 07:39:51 -05:00
Share on mastodon.xyz
2020-09-23 12:39:38 -04:00
</a>
```
2023-03-17 09:06:30 -04:00
The instance URL can be saved in your `localStorage` to be automatically
appended if used later—handy!
2021-01-30 09:12:32 -05:00
> [!IMPORTANT]
> I know I provide [a Share₂Fedi instance](https://s2f.kytta.dev) for others to
> use, but if you want to use Share₂Fedi for your share buttons, **please
> consider self-hosting it**. Although it's free now, running my instance may
> become too expensive for me in the future.
## Hosting
2023-03-17 22:02:41 -04:00
### Vercel, Netlify, Cloudflare Pages
2023-08-30 06:24:46 -04:00
Share₂Fedi was designed to run on [Vercel](https://vercel.com/), but you can
2023-03-17 22:02:41 -04:00
also run it on [Netlify](https://www.netlify.com/) or
[Cloudflare Pages](https://pages.cloudflare.com/). To deploy it yourself (it's
free!), you can use the following buttons:
2023-03-17 22:02:41 -04:00
[![Deploy to Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fkytta%2Fshare2fedi)
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/kytta/share2fedi)
2023-08-30 06:41:06 -04:00
To deploy to Cloudflare Pages, fork the repository and
2023-03-17 22:02:41 -04:00
[follow the instructions](https://docs.astro.build/en/guides/deploy/cloudflare/#how-to-deploy-a-site-with-git).
### Host it yourself
2023-08-30 06:24:46 -04:00
Self-hosting Share₂Fedi outside of SSR providers requires some extra setup:
2023-08-30 06:24:46 -04:00
**Prerequisites:** modern Node.js (v18 is recommended), `pnpm`. You can host
with Deno, but Node.js is still required to build Share₂Fedi.
2023-03-17 21:25:06 -04:00
1. Install dependencies.
```sh
2023-03-16 10:21:16 -04:00
pnpm install
```
2023-03-17 21:25:06 -04:00
2. Build.
2023-03-16 10:21:16 -04:00
```sh
pnpm build
```
2023-08-27 18:31:43 -04:00
If you want to use Deno, add the `--s2f-use-deno` flag:
```sh
pnpm build --s2f-use-deno
```
2023-03-17 21:25:06 -04:00
3. Run server.
> By default, this will only listen on localhost port 3000. To enable
2023-08-30 06:41:06 -04:00
> listening on a certain host and/or port, set the `HOST` and `PORT`
2023-03-17 21:25:06 -04:00
> environment variables, respectively.
2022-03-18 07:16:21 -04:00
```sh
2023-03-17 21:25:06 -04:00
node dist/server/entry.mjs
2022-03-18 07:16:21 -04:00
```
2022-03-18 07:39:31 -04:00
2023-03-19 07:39:39 -04:00
In production, you might want to use a process manager, like
[PM2](https://pm2.keymetrics.io/docs/usage/quick-start/):
2022-03-18 07:16:21 -04:00
```sh
2023-03-19 07:39:39 -04:00
# Start the app, restart on file changes (except node_modules)
pm2 start dist/server/entry.mjs --name "Share2Fedi" --watch --ignore-watch="node_modules"
```
2022-03-17 09:04:44 -04:00
2023-03-17 21:25:06 -04:00
> More information about self-hosting an Astro website with Node:
> https://docs.astro.build/en/guides/integrations-guide/node/#standalone
2023-08-27 18:31:43 -04:00
If you've built Share₂Fedi for Deno:
```sh
deno run --allow-net --allow-read --allow-env ./dist/server/entry.mjs
```
> More information about self-hosting an Astro website with Deno:
> https://docs.astro.build/en/guides/integrations-guide/deno/#usage
2023-03-17 21:25:06 -04:00
4. Set up a reverse proxy.
2023-03-16 10:21:16 -04:00
2023-03-17 21:25:06 -04:00
Basically, you need to run a reverse proxy that would redirect all incoming
requests to `localhost:3000`. Here's how to achieve this in various HTTP
servers:
2022-03-17 09:04:44 -04:00
1. Apache
2022-03-17 09:04:44 -04:00
2022-03-18 07:17:16 -04:00
```apacheconf
2023-03-17 21:25:06 -04:00
ProxyPass "/" "http://localhost:3000/"
2022-03-17 09:04:44 -04:00
```
2. Nginx
2022-03-18 07:17:16 -04:00
```nginxconf
2023-03-17 21:25:06 -04:00
location / {
proxy_pass http://localhost:3000/;
2022-03-17 09:04:44 -04:00
}
```
3. Caddy
2022-05-17 09:30:54 -04:00
```caddy
2023-03-17 21:25:06 -04:00
reverse_proxy :3000
```
2023-03-19 07:39:39 -04:00
### Docker
If you _really_ have to use Docker, there is
[a good guide on building Astro apps with Docker](https://docs.astro.build/en/recipes/docker/).
**I will not** provide support for Docker-based deployments in the observable
future.
2024-02-07 07:43:44 -05:00
## Contribute
### Source code
TL;DR: `pnpm install && pnpm dev`
2024-02-07 07:54:28 -05:00
See [contributing guide](CONTRIBUTING.md#improving-code) for instructions on how
to contribute source code to the project, including adding new Fediverse
projects.
2024-02-07 07:43:44 -05:00
### Translations
2024-02-07 07:54:28 -05:00
Share₂Fedi uses Hosted Weblate for translations.
[You can edit translations using it's practical interface.](https://hosted.weblate.org/engage/share2fedi/).
You also could do it manually by editing files in `src/i18n/translations`, but
this is NOT recommended.
2024-02-07 07:43:44 -05:00
<a href="https://hosted.weblate.org/engage/share2fedi/">
<img src="https://hosted.weblate.org/widget/share2fedi/site/multi-auto.svg" alt="Translation status" />
</a>
2024-02-07 08:07:26 -05:00
> [!NOTE]
> New languages do not become automatically available. For this, a
2024-02-07 07:54:28 -05:00
> separate change to our ad-hoc i18n engine has to be made. See
> [contributing guide](CONTRIBUTING.md#translating) for instructions
2024-02-07 07:43:44 -05:00
_We thank Weblate for providing Libre hosting!_
2021-01-30 09:12:32 -05:00
## See also
2023-03-17 09:06:30 -04:00
**[📯 Shareon](https://shareon.js.org)** (lightweight, stylish, and ethical
share buttons) uses **Share₂Fedi** under the hood!
## Licence
2023-03-19 07:39:39 -04:00
© 20202023 [Nikita Karamov]\
2023-09-02 10:17:15 -04:00
Licensed under the [GNU Affero General Public License v3.0 only][AGPL-3.0-only].
2022-03-17 09:04:44 -04:00
---
2021-08-29 08:10:23 -04:00
2023-03-16 05:41:55 -04:00
This project is hosted on GitHub: <https://github.com/kytta/share2fedi.git>
2021-08-29 08:10:23 -04:00
2023-09-02 10:17:15 -04:00
[AGPL-3.0-only]: https://spdx.org/licenses/AGPL-3.0-only.html
2022-11-14 07:39:51 -05:00
[Nikita Karamov]: https://www.kytta.dev
[Share₂Fedi]: https://s2f.kytta.dev/