From 32d6e808204391a1e92eb9d4e8a7932d6a00a2e2 Mon Sep 17 00:00:00 2001 From: alemi Date: Sat, 16 Mar 2024 06:06:31 +0100 Subject: [PATCH] docs: added readme, renamed upub is actually a pretty cool name, should snipe the crates.io name asap --- README.md | 25 ++++++++++++++++++++++++- src/main.rs | 2 +- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 67a056f..1c48cc4 100644 --- a/README.md +++ b/README.md @@ -1 +1,24 @@ -# All Names Were Taken +# μpub +> micro social network, federated + +μpub aims to be a fast, lightweight and secure [ActivityPub](https://www.w3.org/TR/activitypub/) server + +μpub is currently being developed and can't be used at all, get in touch if you want to contribute! :) + +## progress + + - [x] barebone actors + - [x] barebone activities and objects + - [ ] process barebones inbox + - [ ] process barebones outbox + - [ ] activitystreams/activitypub compliance + - [ ] http signatures + - [ ] privacy, targets, scopes + - [ ] more optimized database schema + - [ ] hashtags, discovery + - [ ] client api (mastodon/pleroma) + - [ ] full activitystreams/activitypub support + - [ ] a custom frontend maybe? + +## what about the name? +μpub, sometimes stylyzed `upub`, is pronounced `mu-pub` (the `μ` stands for [micro](https://en.wikipedia.org/wiki/International_System_of_Units#Prefixes)) diff --git a/src/main.rs b/src/main.rs index c4dff7f..25b011b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -14,7 +14,7 @@ struct CliArgs { /// command to run command: CliCommand, - #[arg(short, long, default_value = "sqlite://./anwt.db")] + #[arg(short, long, default_value = "sqlite://./upub.db")] /// database connection uri database: String,