https://github.com/pramari/webapp
Django User Profiles and ActivityPub Federation, made easy.
https://github.com/pramari/webapp
activitypub django profile user-management webapp
Last synced: 5 months ago
JSON representation
Django User Profiles and ActivityPub Federation, made easy.
- Host: GitHub
- URL: https://github.com/pramari/webapp
- Owner: pramari
- License: bsd-3-clause
- Created: 2023-08-21T18:57:48.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-07-22T08:33:47.000Z (11 months ago)
- Last Synced: 2025-08-13T19:21:05.230Z (11 months ago)
- Topics: activitypub, django, profile, user-management, webapp
- Language: Python
- Homepage: https://pramari.de
- Size: 742 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# webapp
```mermaid
info
```
```mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```
```mermaid
classDiagram
Actor <|-- Inbox: receive
Actor : Inbox
Actor : Outbox
Actor : Followers
Actor : Follows
Inbox : get
Inbox : post
Outbox <|-- Actor: publish
Outbox : Collection[] activities
Likes <|-- Actor: like
```
## Fediverse Actor
```
:py:class:`webapp.models.activitypub.actor.Actor`
```
## Fediverse Following
## Fediverse Followers
### Build the package
```
python3 -m build --wheel
```