A self-hosted, single-user, ActivityPub powered microblog. Uses SQLite, and Python 3.10+
 
 
 
 
 
 
Go to file
Thomas Sileo 9c12a67311 Tweak CSS for DMs admin section 2019-11-03 11:16:52 +01:00
blueprints Add support for inline images 2019-11-01 16:05:48 +01:00
config Initial import 2018-05-18 20:41:41 +02:00
core Fix for HubZilla actor caching 2019-11-01 12:15:42 +01:00
data Remove old rabbitmq data dir 2019-04-24 00:44:50 +02:00
docs Tweak the README 2019-04-22 11:03:48 +02:00
sass Improve template markup 2019-09-08 10:56:46 +02:00
setup_wizard wizard fixup (#55) 2019-06-17 22:55:39 +02:00
static Custom emojis support 2019-08-20 22:16:47 +02:00
templates Tweak CSS for DMs admin section 2019-11-03 11:16:52 +01:00
tests Tweak the test config 2019-08-18 11:44:24 +02:00
utils Dedup inline attachments (when already inlined) 2019-11-03 09:59:04 +01:00
.dockerignore Fix docker conf 2019-09-01 10:49:09 +02:00
.drone.yml Disable mypy until a regression in it is fixed 2019-10-20 20:58:56 +02:00
.env Tweak docker-compose to allow starting multiple instances 2018-05-21 11:53:58 +02:00
.gitignore Initial import 2018-05-18 20:41:41 +02:00
.isort.cfg Formatting 2018-07-21 01:05:51 +02:00
Dockerfile Lock to Python 3.7 2019-10-16 23:49:17 +02:00
LICENSE Initial import 2018-05-18 20:41:41 +02:00
Makefile Fix Makefile 2019-08-17 23:26:59 +02:00
README.md Tweak README 2019-10-25 23:27:21 +02:00
app.py Remove unused import 2019-10-16 23:39:38 +02:00
config.py Add support for manually approving followers 2019-10-20 20:47:35 +02:00
dev-requirements.txt Some tests are passing 2018-06-17 21:54:16 +02:00
docker-compose-dev.yml Move stuff arround 2019-08-01 21:44:35 +02:00
docker-compose.yml Delay poussetaches processing at startup 2019-08-28 23:11:40 +02:00
requirements.txt Code highlighting 2019-08-25 00:16:39 +02:00
run.sh Add new startup script 2019-09-08 16:57:00 +02:00
setup.cfg Initial import 2018-05-18 20:41:41 +02:00
startup.py Add new startup script 2019-09-08 16:57:00 +02:00

README.md

microblog.pub

microblog.pub

A self-hosted, single-user, ActivityPub powered microblog.

Build Status #microblog.pub on Matrix License Code style: black

Still in early development/I do not recommend to run an instance yet.

Features

  • Implements a basic ActivityPub server (with federation)
    • S2S (Server to Server) and C2S (Client to Server) protocols
    • Compatible with Mastodon and others (Pleroma, Misskey, Plume, PixelFed, Hubzilla...)
  • Exposes your outbox as a basic microblog
    • Support all content types from the Fediverse (Note, Article, Page, Video, Image, Question...)
    • Markdown support
    • Server-side code syntax highlighting
  • Comes with an admin UI with notifications and the stream of people you follow
    • Private "bookmark" support
    • List support
    • Allows you to attach files to your notes
    • Custom emojis support
  • Cares about your privacy
    • The image upload endpoint strips EXIF meta data before storing the file
    • Every attachment/media is cached (or proxied) by the server
  • No JavaScript, that's it. Even the admin UI is pure HTML/CSS
    • (well except for the Emoji picker within the admin, but it's only few line of hand-written JavaScript)
  • Easy to customize (the theme is written Sass)
    • mobile-friendly theme
    • with dark and light version
  • IndieWeb citizen
    • Microformats aware (exports h-feed, h-entry, h-cards, ...)
      • Export a feed in the HTML that is WebSub compatible
    • Partial Micropub support (implementation report)
    • Implements IndieAuth endpoints (authorization and token endpoint)
      • You can use your ActivityPub identity to login to other websites/app (with U2F support)
    • Send Webmentions to linked website (only for public notes)
    • Exports RSS/Atom/JSON feeds
    • You stream/timeline is also available in an (authenticated) JSON feed
  • Comes with a tiny HTTP API to help posting new content and and read your inbox/notifications
  • Deployable with Docker (Docker compose for everything: dev, test and deployment)
  • Focused on testing

User Guide

Remember that microblog.pub is still in early development.

The easiest and recommended way to run microblog.pub in production is to use the provided docker-compose config.

First install Docker and Docker Compose. Python is not needed on the host system.

Note that all the generated data (config included) will be stored on the host (i.e. not only in Docker) in config/ and data/.

Installation

$ git clone https://github.com/tsileo/microblog.pub
$ cd microblog.pub
$ make config

Once the initial configuration is done, you can still tweak the config by editing config/me.yml directly.

Deployment

To spawn the docker-compose project (running this command will also update microblog.pub to latest and restart everything if it's already running):

$ make run

By default, the server will listen on localhost:5005 (http://localhost:5005 should work if you're running locally).

For production, you need to setup a reverse proxy (nginx, caddy) to forward your domain to the local server (and check certbot for getting a free TLS certificate).

HTTP API

See docs/api.md for the internal HTTP API documentation.

Backup

The easiest way to backup all of your data is to backup the microblog.pub/ directory directly (that's what I do and I have been able to restore super easily). It should be safe to copy the directory while the Docker compose project is running.

Development

The project requires Python3.7+.

The most convenient way to hack on microblog.pub is to run the Python server on the host directly, and evetything else in Docker.

# One-time setup (in a new virtual env)
$ pip install -r requirements.txt
# Start MongoDB and poussetaches
$ make poussetaches
$ env POUSSETACHES_AUTH_KEY="<secret-key>" docker-compose -f docker-compose-dev.yml up -d
# Run the server locally
$ FLASK_DEBUG=1 MICROBLOGPUB_DEBUG=1 FLASK_APP=app.py POUSSETACHES_AUTH_KEY="<secret-key>" flask run -p 5005 --with-threads

Contributions

Contributions/PRs are welcome, please open an issue to start a discussion before your start any work.