Go to file
2019-04-22 11:34:55 +02:00
config Initial import 2018-05-18 20:41:41 +02:00
data Add data dir for tasks 2019-04-07 11:01:46 +02:00
docs Tweak the README 2019-04-22 11:03:48 +02:00
sass Question/poll support 2019-04-14 19:17:54 +02:00
setup_wizard Fix formatting 2019-04-22 11:06:54 +02:00
static Better theme support 2018-07-01 11:40:44 +02:00
templates Add Page support 2019-04-19 00:33:59 +02:00
tests Reformat the files with black 2019-04-13 10:00:56 +02:00
utils Run isort 2019-04-22 09:58:11 +02:00
.dockerignore Tests tests tests and bugfixes 2018-05-28 19:46:23 +02:00
.drone.yml Fix Drone CI config 2019-04-14 20:20:37 +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
activitypub.py Run isort 2019-04-22 09:58:11 +02:00
app.py Run isort 2019-04-22 09:58:11 +02:00
config.py Isort fixes 2019-04-22 11:34:55 +02:00
dev-requirements.txt Some tests are passing 2018-06-17 21:54:16 +02:00
docker-compose-dev.yml Fix installation instructions and config (#45) 2019-04-17 20:44:26 +02:00
docker-compose.yml Start to remove Celery code 2019-04-12 21:10:10 +02:00
Dockerfile Tweak the Dockerfile 2018-09-01 11:23:19 +02:00
LICENSE Initial import 2018-05-18 20:41:41 +02:00
Makefile Improve the Makefile 2019-04-22 11:18:06 +02:00
poussetaches.py Isort fixes 2019-04-22 11:34:55 +02:00
README.md More README tweaks 2019-04-22 11:32:20 +02:00
requirements.txt More Celery cleanup 2019-04-12 21:10:55 +02:00
run.sh Tweak tasks 2019-04-08 16:54:07 +02:00
setup.cfg Initial import 2018-05-18 20:41:41 +02:00

microblog.pub

microblog.pub

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

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

Still in early development.

/!\ Note to adventurer

If you are running an instance with Celery/RabbitMQ, you will need to perform a migration.

Getting closer to a stable release, it should be the "last" migration.

Features

  • Implements a basic ActivityPub server (with federation)
    • Compatible with Mastodon and others (Pleroma, Hubzilla...)
    • Also implements a remote follow compatible with Mastodon instances
  • Exposes your outbox as a basic microblog
    • Support all content types from the Fediverse (Note, Article, Page, Video, Image, Question...)
  • Comes with an admin UI with notifications and the stream of people you follow
  • Allows you to attach files to your notes
    • Privacy-aware image upload endpoint that strip EXIF meta data before storing the file
  • No JavaScript, that's it. Even the admin UI is pure HTML/CSS
  • Easy to customize (the theme is written Sass)
    • mobile-friendly theme
    • with dark and light version
  • Microformats aware (exports h-feed, h-entry, h-cards, ...)
  • 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)
  • Implements IndieAuth endpoints (authorization and token endpoint)
    • U2F support
    • You can use your ActivityPub identity to login to other websites/app
  • 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

Deployment

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

$ make run

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.