bookwyrm/README.md

80 lines
4.5 KiB
Markdown
Raw Normal View History

2020-06-28 22:47:36 +00:00
# BookWyrm
2020-01-27 05:52:24 +00:00
2020-01-27 22:16:56 +00:00
Social reading and reviewing, decentralized with ActivityPub
2020-01-28 02:59:49 +00:00
2020-02-20 22:57:23 +00:00
## Contents
2021-02-08 01:11:30 +00:00
- [Joining BookWyrm](#joining-bookwyrm)
2021-02-13 01:29:05 +00:00
- [Contributing](#contributing)
- [About BookWyrm](#about-bookwyrm)
2021-04-12 18:44:55 +00:00
- [What it is and isn't](#what-it-is-and-isnt)
- [The role of federation](#the-role-of-federation)
- [Features](#features)
- [Set up BookWyrm](#set-up-bookwyrm)
2020-02-20 22:57:23 +00:00
2021-02-08 01:11:30 +00:00
## Joining BookWyrm
If you'd like to join an instance, you can check out the [instances](https://joinbookwyrm.com/instances/) list.
2021-02-13 01:29:05 +00:00
## Contributing
2022-05-15 11:01:25 +00:00
See [contributing](https://docs.joinbookwyrm.com/contributing.html) for code, translation or monetary contributions.
2021-02-13 01:29:05 +00:00
## About BookWyrm
2020-02-26 10:04:20 +00:00
### What it is and isn't
BookWyrm is a platform for social reading. You can use it to track what you're reading, review books, and follow your friends. It isn't primarily meant for cataloguing or as a data-source for books, but it does do both of those things to some degree.
### The role of federation
2021-02-08 01:11:30 +00:00
BookWyrm is built on [ActivityPub](http://activitypub.rocks/). With ActivityPub, it inter-operates with different instances of BookWyrm, and other ActivityPub compliant services, like Mastodon. This means you can run an instance for your book club, and still follow your friend who posts on a server devoted to 20th century Russian speculative fiction. It also means that your friend on mastodon can read and comment on a book review that you post on your BookWyrm instance.
2021-02-08 01:11:30 +00:00
Federation makes it possible to have small, self-determining communities, in contrast to the monolithic service you find on GoodReads or Twitter. An instance can be focused on a particular interest, be just for a group of friends, or anything else that brings people together. Each community can choose which other instances they want to federate with, and moderate and run their community autonomously. Check out https://runyourown.social/ to get a sense of the philosophy and logistics behind small, high-trust social networks.
### Features
2021-04-13 17:26:46 +00:00
Since the project is still in its early stages, the features are growing every day, and there is plenty of room for suggestions and ideas. Open an [issue](https://github.com/bookwyrm-social/bookwyrm/issues) to get the conversation going!
2021-04-12 22:11:01 +00:00
- Posting about books
2020-04-24 19:19:19 +00:00
- Compose reviews, with or without ratings, which are aggregated in the book page
- Compose other kinds of statuses about books, such as:
2021-04-12 22:11:01 +00:00
- Comments on a book
- Quotes or excerpts
2020-04-24 19:19:19 +00:00
- Reply to statuses
2021-02-08 01:11:30 +00:00
- View aggregate reviews of a book across connected BookWyrm instances
- Differentiate local and federated reviews and rating in your activity feed
2021-04-12 22:11:01 +00:00
- Track reading activity
2020-04-24 19:19:19 +00:00
- Shelve books on default "to-read," "currently reading," and "read" shelves
- Create custom shelves
2021-02-08 01:11:30 +00:00
- Store started reading/finished reading dates, as well as progress updates along the way
2020-04-24 19:19:19 +00:00
- Update followers about reading activity (optionally, and with granular privacy controls)
2021-02-08 01:11:30 +00:00
- Create lists of books which can be open to submissions from anyone, curated, or only edited by the creator
2021-04-12 22:11:01 +00:00
- Federation with ActivityPub
2020-04-24 19:19:19 +00:00
- Broadcast and receive user statuses and activity
2021-02-08 01:11:30 +00:00
- Share book data between instances to create a networked database of metadata
2020-04-24 19:19:19 +00:00
- Identify shared books across instances and aggregate related content
2020-06-28 22:47:36 +00:00
- Follow and interact with users across BookWyrm instances
2021-02-08 01:11:30 +00:00
- Inter-operate with non-BookWyrm ActivityPub services (currently, Mastodon is supported)
2021-04-12 22:11:01 +00:00
- Granular privacy controls
2021-02-08 01:11:30 +00:00
- Private, followers-only, and public privacy levels for posting, shelves, and lists
- Option for users to manually approve followers
2020-03-11 19:14:33 +00:00
- Allow blocking and flagging for moderation
2021-02-28 16:11:38 +00:00
2021-02-13 01:29:05 +00:00
### The Tech Stack
Web backend
2021-03-04 18:05:01 +00:00
- [Django](https://www.djangoproject.com/) web server
- [PostgreSQL](https://www.postgresql.org/) database
- [ActivityPub](https://activitypub.rocks/) federation
- [Celery](https://docs.celeryproject.org/) task queuing
2021-03-04 18:05:01 +00:00
- [Redis](https://redis.io/) task backend
2021-03-23 20:38:03 +00:00
- [Redis (again)](https://redis.io/) activity stream manager
2021-02-28 16:11:38 +00:00
2021-02-13 01:29:05 +00:00
Front end
2021-04-12 18:44:55 +00:00
- Django templates
- [Bulma.io](https://bulma.io/) css framework
- Vanilla JavaScript, in moderation
2021-02-28 16:11:38 +00:00
2021-02-13 01:29:05 +00:00
Deployment
2021-03-04 18:05:01 +00:00
- [Docker](https://www.docker.com/) and docker-compose
- [Gunicorn](https://gunicorn.org/) web runner
- [Flower](https://github.com/mher/flower) celery monitoring
- [Nginx](https://nginx.org/en/) HTTP server
2021-03-21 21:31:51 +00:00
## Set up BookWyrm
2022-05-15 11:01:25 +00:00
The [documentation website](https://docs.joinbookwyrm.com/) has instruction on how to set up BookWyrm in a [developer environment](https://docs.joinbookwyrm.com/install-dev.html) or [production](https://docs.joinbookwyrm.com/install-prod.html).