mirror of
https://github.com/versia-pub/activitypub.git
synced 2025-12-06 06:38:20 +01:00
49 lines
1.3 KiB
Markdown
49 lines
1.3 KiB
Markdown
|
|
<p align="center">
|
|
<a href="https://versia.pub"><img src="https://cdn.versia.pub/branding/logo-dark.svg" alt="Versia Logo" height="110"></a>
|
|
</p>
|
|
|
|
## Versia ActivityPub Bridge
|
|
|
|
[](https://github.com/versia-pub/activitypub/actions/workflows/nix-flake.yml)
|
|
|
|
**ActivityPub/ActivityStreams** compatibility layer for [**Versia Server**](https://github.com/versia-pub/versia).
|
|
|
|
Designed as a microservice, runs as its own process and communicates with the main server via HTTP.
|
|
|
|
## Development (Flakes)
|
|
|
|
This repo uses [Flakes](https://nixos.wiki/wiki/Flakes) from the get-go.
|
|
|
|
```bash
|
|
# Dev shell
|
|
nix develop
|
|
|
|
# or run via cargo
|
|
nix develop -c cargo run
|
|
|
|
# build
|
|
nix build
|
|
```
|
|
|
|
We also provide a [`justfile`](https://just.systems/) for Makefile'esque commands.
|
|
|
|
## Building
|
|
|
|
### Docker/Podman
|
|
|
|
To build the Docker image, run the following command:
|
|
|
|
```bash
|
|
docker build -t activitypub:latest .
|
|
```
|
|
|
|
To run the docker image, use the [`docker-compose.yml`](./docker-compose.yml) file:
|
|
|
|
```bash
|
|
wget https://raw.githubusercontent.com/versia-pub/activitypub/main/docker-compose.yml
|
|
|
|
docker-compose up -d
|
|
```
|
|
|
|
If you are building from source, make sure to replace the image name in the `docker-compose.yml` file. |