docs: added readme, renamed

upub is actually a pretty cool name, should snipe the crates.io name
asap
This commit is contained in:
əlemi 2024-03-16 06:06:31 +01:00
parent 52f7ee0990
commit 32d6e80820
Signed by: alemi
GPG key ID: A4895B84D311642C
2 changed files with 25 additions and 2 deletions

View file

@ -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))

View file

@ -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,