Fork of Scribe - an alternative Medium frontend
Go to file
Fabio Manganiello 4491c6dba1 Added carbon dependency to shard.yml 2023-05-11 15:47:39 +02:00
.github/workflows Initial app 2021-05-01 17:03:38 -04:00
config Remove the need for a DATABASE_URL 2022-05-21 11:34:28 -04:00
db/migrations Initial app 2021-05-01 17:03:38 -04:00
docs Add scribe.g4c3eya4clenolymqbpgwz3q3tawoxw56yhzk4vugqrl6dtu3ejvhjid.onion instance 2022-12-11 13:33:09 -05:00
public Initial app 2021-05-01 17:03:38 -04:00
script Upgrade to Lucky 0.30.1 2022-07-17 11:55:51 -04:00
spec Add captions to embedded media 2023-05-06 12:10:46 -04:00
src Add captions to embedded media 2023-05-06 12:10:46 -04:00
tasks Initial app 2021-05-01 17:03:38 -04:00
.crystal-version Change crystal version to 1.8.1 2023-05-06 13:05:58 -04:00
.dockerignore Add Dockerfile 2021-10-16 10:56:15 -04:00
.editorconfig Initial app 2021-05-01 17:03:38 -04:00
.gitignore Add instance docs 2021-11-11 11:33:22 -05:00
.tool-versions Update to nodejs 16.18.0 2022-11-06 17:33:20 -05:00
CHANGELOG Update CHANGELOG 2023-05-06 13:18:13 -04:00
Dockerfile Upgrade to Crystal 1.5.0 2022-07-17 12:39:48 -04:00
LICENSE Add License 2021-09-12 17:34:48 -04:00
Procfile Initial app 2021-05-01 17:03:38 -04:00
Procfile.dev Initial app 2021-05-01 17:03:38 -04:00
README.md Remove the need for a DATABASE_URL 2022-05-21 11:34:28 -04:00
bs-config.js Initial app 2021-05-01 17:03:38 -04:00
flake.lock Add support for development with Nix 2021-10-15 08:56:15 -04:00
flake.nix Add support for development with Nix 2021-10-15 08:56:15 -04:00
package.json Upgrade Crystal to 1.2.1 and Lucky to 0.29.0 2021-12-12 12:01:55 -05:00
shard.lock Added carbon dependency to shard.yml 2023-05-11 15:47:39 +02:00
shard.yml Added carbon dependency to shard.yml 2023-05-11 15:47:39 +02:00
shell.nix Add support for development with Nix 2021-10-15 08:56:15 -04:00
tasks.cr Update to lucky 1.0.0-rc1 2023-05-06 10:53:31 -04:00
webpack.mix.js Add tufte.css 2021-08-29 15:19:40 -04:00
yarn.lock Upgrade Crystal to 1.2.1 and Lucky to 0.29.0 2021-12-12 12:01:55 -05:00

README.md

Scribe - An Alternative Medium Frontend

This is a project written using Lucky. It's main website is scribe.rip.

Deploying Your Own

I'd love it if you deployed your own version of this app! A few others have already. To do so currently will take some knowledge of how a webserver runs. This app is built with the Lucky framework and there are a bunch of different ways to deploy. The main instance runs on Ubuntu but there are also directions for Heroku or Dokku.

Hopefully a more comprehensive guide will be written at some point, but for now feel free to reach out to the mailing list if you have any questions.

Docker (Unsupported)

A Dockerfile is included to build and run your own OCI images. I don't use Docker personally so this is all community created and supported. If it breaks, please write to the mailing list.

To build:

$ docker build [--build-arg PUID=1000] [--build-arg PGID=1000] -t scribe:latest -f ./Dockerfile .

To run (generating a base config from environment variables):

$ docker run -it --rm -p 8080:8080 -e SCRIBE_PORT=8080 -e SCRIBE_HOST=0.0.0.0 scribe:latest

To run with mounted config from local fs:

$ docker run -it --rm -v `pwd`/config/watch.yml:/app/config/watch.yml -p 8080:8080 scribe:latest

Configuration

To allow your domain to show up on the homepage, the APP_DOMAIN environment variable must be set. Note that this only takes effect if the LUCKY_ENV environment variable is also set to production.

See the route_helper config for the code that powers this feature.

Other configuration needed when in production mode:

  • PORT: The port Scribe should run on
  • SECRET_KEY_BASE: A 32-bit string. Can be generated with lucky gen.secret_key
  • GITHUB_PERSONAL_ACCESS_TOKEN: to proxy gists with authenticated GitHub API requests
  • GITHUB_USERNAME: to proxy gists with authenticated GitHub API requests

GitHub Gist Proxying

Scribe proxies GitHub gists. It does this by making API requests to GitHub's ReST API to get the gist file contents. GitHub limits API requests to 5000/hour with a valid api token and 60/hour without. 60 is pretty tight for the usage that scribe.rip gets, but 5000 is reasonable most of the time.

API credentials are in the form of a GitHub username and a personal access token attached to that username. To get a token, visit https://github.com/settings/tokens and create a new token. The only permission it needs is gist.

This token is set via the GITHUB_PERSONAL_ACCESS_TOKEN environment variable. The username also needs to be set via GITHUB_USERNAME. When developing locally, these can both be set in the .env file. Authentication is probably not necessary locally, but it's there if you want to test. If either token is missing, unauthenticated requests are made.

Project goals

I believe that Medium is a bad actor on the web. They offer a bad reading experience. Writing there benefits Medium more than the author. Counter to their promise of a wider reach, they offer worse SEO. They use extortionist business tactics. Finally, they want to centralize the currently decentralized world of blogging.

Since Scribe uses Medium content, I don't want to help people engage with it more than they must. My goal here is not to make a nicer Medium to engage with, but to make a less bad experience when people are forced to engage with it. I want Scribe to be a tool, not a platform.

It's intentional that there is no way to browse content from a user, see popular posts, consume via an RSS feed, or further engage with an article via comments or "claps". I want to spend my time encouraging writers to move to worthy platforms, not making a bad platform worthy.

Contributing

  1. Install required dependencies (see sub-sections below)
  2. Run script/setup
  3. Run lucky dev to start the app
  4. Send a patch to ~edwardloveall/Scribe@lists.sr.ht (it may not look like it at first, but that's an email address).

Installing dependencies

General instructions for installing Lucky and its dependencies can be found at https://luckyframework.org/guides/getting-started/installing#install-required-dependencies.

Installing dependencies with Nix

If you are using the Nix package manager, you can get a shell with all dependencies with the following command(s):

nix-shell

# Or if you are using the (still experimental) Nix Flakes feature
nix flake update # Update dependencies (optional)
nix develop

Learning Lucky

Lucky uses the Crystal programming language. You can learn about Lucky from the Lucky Guides.