kepi is a Django-based microblogging system, implemented in Python. It uses the ActivityPub protocol to communicate with other servers, and the Mastodon protocol to communicate with clients.
 
 
 
 
Go to file
Marnanel Thurman 131c2cb3ea Added celery (with specification for version > 4.0.0), and pillow, to requirements.txt 2019-10-02 23:04:40 +01:00
django_kepi Add standard headers in middleware. 2019-09-30 21:21:34 +01:00
docs kepi.png crushed again. icon.png added. 2019-08-17 20:24:32 +01:00
kepi Add standard headers in middleware. 2019-09-30 21:21:34 +01:00
tests Add standard headers in middleware. 2019-09-30 21:21:34 +01:00
.gitignore removed tests/examples; they're not tests. Added "examples" to .gitignore (local copy). 2019-09-21 17:18:24 +01:00
LICENSE.txt Initial commit 2018-08-06 14:44:35 +01:00
MANIFEST.in Fixes to settings so that templates get installed properly. 2019-08-08 19:55:32 +01:00
README.md More documentation 2019-08-14 17:56:02 +01:00
manage.py Huge checkin: central project "kepi" to use the "django_kepi" library. 2019-07-11 18:25:06 +01:00
request-test.py Removed all the old Cobject stuff, at last. This confused 2018-09-16 21:42:27 +01:00
requirements.txt Added celery (with specification for version > 4.0.0), and pillow, to requirements.txt 2019-10-02 23:04:40 +01:00
runtests.py changed location of test_settings 2018-08-16 18:51:24 +01:00
setup.py setup.py installs a "kepi" commandline tool which delegates to manage.py. 2019-08-19 17:08:59 +01:00
test_urls.py Add django_kepi.urls. Include it from test_urls.py. 2019-05-18 18:41:10 +01:00

README.md

django-kepi

kepi is a Django library for ActivityPub, using Python 3. It's still at an early stage, and you shouldn't particularly expect anything to work properly.

Help is always appreciated.

Purpose

This project has two purposes:

  • a Django library for ActivityPub. This is the django_kepi app.

  • a standalone daemon for other local programs to interact with. This is the kepi project (in the Django sense).

Running it

Nothing out of the ordinary. Create your virtual environment:

$ python3 -m venv wombat
$ wombat/bin/activate

If python3 doesn't work, try plain python.

Then go wherever you put the kepi sources, and run the installation:

$ pip -r requirements.txt
$ python manage.py tests
$ python manage.py runserver

then check whether you can see anything at https://127.0.0.1:8000/admin/ .

Please don't make kepi's server visible beyond your local network. It's not designed to serve the general internet. If you're installing for more than just testing, use nginx or apache to proxy requests.

History

kepi started life as part of the un_chapeau project. un_chapeau is a Mastodon-like system written with Django in Python. kepi was split off from this, because it seemed more generally useful.

(All the subsystems of un_chapeau are named after kinds of hat; a kepi is a kind of hat worn by French gendarmes.)