bookwyrm/README.md

141 lines
8 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)
- [The overall idea](#the-overall-idea)
2020-02-20 22:57:23 +00:00
- [What it is and isn't](#what-it-is-and-isnt)
- [The role of federation](#the-role-of-federation)
- [Features](#features)
- [Setting up the developer environment](#setting-up-the-developer-environment)
2020-12-09 22:49:47 +00:00
- [Installing in Production](#installing-in-production)
2020-02-21 00:52:12 +00:00
- [Project structure](#project-structure)
2020-03-07 20:41:22 +00:00
- [Book data](#book-data)
2020-02-21 00:52:12 +00:00
- [Contributing](#contributing)
2020-02-20 22:57:23 +00:00
2021-02-08 01:11:30 +00:00
## Joining BookWyrm
BookWyrm is still a young piece of software, and isn't at the level of stability and feature-richness that you'd find in a production-ready application. But it does what it says on the box! If you'd like to join an instance, you can check out the [instances](https://github.com/mouse-reeve/bookwyrm/blob/main/instances.md) list.
2021-02-12 23:31:12 +00:00
You can request an invite to https://bookwyrm.social by [email](mailto:mousereeve@riseup.net), [Mastodon direct message](https://friend.camp/@tripofmice), or [Twitter direct message](https://twitter.com/tripofmice).
2021-02-08 01:11:30 +00:00
## The overall idea
2020-02-26 10:04:20 +00:00
### What it is and isn't
2020-06-28 22:47:36 +00:00
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 datasource 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-02-08 01:11:30 +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/mouse-reeve/bookwyrm/issues) to get the conversation going!
2020-04-24 19:19:19 +00:00
- Posting about books
- Compose reviews, with or without ratings, which are aggregated in the book page
- Compose other kinds of statuses about books, such as:
- Comments on a book
- Quotes or excerpts
- 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
- 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
- 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)
2020-02-20 18:53:10 +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
2020-01-28 02:59:49 +00:00
## Setting up the developer environment
Set up the environment file:
``` bash
cp .env.example .env
```
2020-04-24 19:19:19 +00:00
For most testing, you'll want to use ngrok. Remember to set the DOMAIN in `.env` to your ngrok domain.
2020-11-02 21:00:11 +00:00
You'll have to install the Docker and docker-compose. When you're ready, run:
```bash
docker-compose build
docker-compose run --rm web python manage.py migrate
docker-compose run --rm web python manage.py initdb
2021-01-20 22:17:30 +00:00
docker-compose up
2020-11-02 21:00:11 +00:00
```
2020-12-13 04:25:58 +00:00
Once the build is complete, you can access the instance at `localhost:1333`
2020-11-02 21:00:11 +00:00
## Installing in Production
This project is still young and isn't, at the momoment, very stable, so please procede with caution when running in production.
### Server setup
- Get a domain name and set up DNS for your server
- Set your server up with appropriate firewalls for running a web application (this instruction set is tested again Ubuntu 20.04)
- Set up a mailgun account and the appropriate DNS settings
- Install Docker and docker-compose
### Install and configure BookWyrm
- Get the application code:
`git clone git@github.com:mouse-reeve/bookwyrm.git`
- Switch to the `production` branch
`git checkout production`
- Create your environment variables file
`cp .env.example .env`
- Add your domain, email address, mailgun credentials
- Set a secure redis password and secret key
2021-02-08 01:11:30 +00:00
- Set a secure database password for postgres
2020-12-06 19:15:40 +00:00
- Update your nginx configuration in `nginx/default.conf`
2020-11-02 21:00:11 +00:00
- Replace `your-domain.com` with your domain name
- Run the application (this should also set up a Certbot ssl cert for your domain)
`docker-compose up --build`
Make sure all the images build successfully
- When docker has built successfully, stop the process with `CTRL-C`
- Comment out the `command: certonly...` line in `docker-compose.yml`
- Run docker-compose in the background
`docker-compose up -d`
- Initialize the database
2020-12-06 19:15:40 +00:00
`./bw-dev initdb`
2021-02-08 01:11:30 +00:00
- Set up schedule backups with cron that runs that `docker-compose exec db pg_dump -U <databasename>` and saves the backup to a safe locationgi
2020-11-02 21:00:11 +00:00
- Congrats! You did it, go to your domain and enjoy the fruits of your labors
### Configure your instance
- Register a user account in the applcation UI
- Make your account a superuser (warning: do *not* use django's `createsuperuser` command)
- On your server, open the django shell
2020-12-06 19:15:40 +00:00
`./bw-dev shell`
2020-11-02 21:00:11 +00:00
- Load your user and make it a superuser
```python
from bookwyrm import models
user = models.User.objects.get(id=1)
user.is_staff = True
user.is_superuser = True
user.save()
```
2021-02-08 01:11:30 +00:00
- Go to the site settings (`/settings/site-settings` on your domain) and configure your instance name, description, code of conduct, and toggle whether registration is open on your instance
2020-01-28 20:58:32 +00:00
2020-03-07 20:41:22 +00:00
## Book data
2021-02-08 01:11:30 +00:00
The application is set up to share book and author data between instances, and get book data from arbitrary outside sources. Right now, the only connector is to OpenLibrary, but other connectors could be written.
2020-03-07 20:41:22 +00:00
2020-04-24 19:19:19 +00:00
There are three concepts in the book data model:
- `Book`, an abstract, high-level concept that could mean either a `Work` or an `Edition`. No data is saved as a `Book`, it serves as shared model for `Work` and `Edition`
- `Work`, the theoretical umbrella concept of a book that encompasses every edition of the book, and
- `Edition`, a concrete, actually published version of a book
2020-03-07 20:41:22 +00:00
2020-04-24 19:19:19 +00:00
Whenever a user interacts with a book, they are interacting with a specific edition. Every work has a default edition, but the user can select other editions. Reviews aggregated for all editions of a work when you view an edition's page.
2020-03-07 20:41:22 +00:00
2020-02-21 00:52:12 +00:00
## Contributing
2020-04-24 19:19:19 +00:00
There are many ways you can contribute to this project! You are welcome and encouraged to create or contribute an issue to report a bug, request a feature, make a usability suggestion, or express a nebulous desire.
2020-01-28 20:58:32 +00:00
2020-04-24 19:19:19 +00:00
If you'd like to add to the codebase, that's super rad and you should do it! At this point, there isn't a formalized process, but you can take a look at the open issues, or contact me directly and chat about it.