Go to file
video-prize-ranch 6798c2f42f
Add robots.txt
2022-01-21 18:35:12 -05:00
api Fix comments and votes on albums 2022-01-20 16:09:57 -05:00
pages Fix comments and votes on albums 2022-01-20 16:09:57 -05:00
samples Make comments optional 2021-10-07 01:01:37 +09:00
src Initial album support 2022-01-17 15:23:04 -05:00
static Add robots.txt 2022-01-21 18:35:12 -05:00
types Fix comments and votes on albums 2022-01-20 16:09:57 -05:00
utils Comments 2022-01-18 18:05:06 -05:00
views Fix comments and votes on albums 2022-01-20 16:09:57 -05:00
.dockerignore Add Dockerfile 2021-10-07 01:01:36 +09:00
.gitignore First commit: /a/, /gallery/, images, gifv 2021-10-07 01:00:58 +09:00
Dockerfile Replace go-rimgu with rimgo in the Dockerfile 2022-01-17 23:34:55 +01:00
LICENSE Add README, LICENSE 2021-10-07 01:19:35 +09:00
README.md Update README 2022-01-20 16:47:21 -05:00
config.yml Update README 2022-01-17 18:30:51 -05:00
docker-compose.yml Add image 2022-01-17 18:40:43 -05:00
go.mod Comments 2022-01-18 18:05:06 -05:00
go.sum Comments 2022-01-18 18:05:06 -05:00
main.go Add robots.txt 2022-01-21 18:35:12 -05:00

README.md

rimgo

An alternative frontend for Imgur. Based on rimgu and rewritten in Go.

License: AGPLv3

It's read-only and works without JavaScript. Images and albums can be viewed without wasting resources from downloading and running tracking scripts. No sign-up nags.

Features

  • URL-compatible with i.imgur.com - just replace the domain in the URL
  • Images and videos (gifv, mp4)
  • Galleries with comments
  • Albums
  • User page
  • Tag page

This is currently very early stage software. Some things left to implement (contributions welcome!):

  • Streaming (currently media is downloaded in full in rimgu before it's returned)
  • Localization/internationalization
  • Pretty CSS styling (responsive?)
  • Support for other popular image sites
  • Filtering and exploration on user/tags pages
  • Responsive scaling of videos on user/tags pages
  • Logo

Things that are considered out of scope:

  • Uploading, commenting, voting, etc - rimgo is read-only.
  • Authentication, serving HTTPS, rate limiting, etc - Use a reverse proxy or load balancer like Caddy, Traefik, or NGINX.
  • Anything requiring JavaScript or the client directly interacting with upstream servers.

Instances

Open an issue to have your instance listed here!

Website Country Cloudflare
i.bcow.xyz (official) 🇨🇦 CA
rimgo.pussthecat.org 🇩🇪 DE
img.riverside.rocks 🇺🇸 US
l4d4owboqr6xcmd6lf64gbegel62kbudu3x3jnldz2mx6mhn3bsv3zyd.onion
jx3dpcwedpzu2mh54obk5gvl64i2ln7pt5mrzd75s4jnndkqwzaim7ad.onion 🇺🇸 US

Install

rimgo can run on any platform Go compiles on.

Docker

Install Docker and docker-compose, then clone this repository.

git clone https://codeberg.org/video-prize-ranch/rimgo
cd rimgo

Edit the docker-compose.yml file using your favorite text editor.

nvim docker-compose.yml

You can now run rimgo.

sudo docker-compose up -d

Build from source

Requirements

  • Go v1.16 or later

Clone the repository and cd into it.

git clone https://codeberg.org/video-prize-ranch/rimgo
cd rimgo

Build rimgo.

go build

Edit the config file using your preferred editor.

nvim config.yml

You can now run rimgo.

./rimgo

Configuration

rimgo can be configured using environment variables or a config file.

Environment variables

Name Default
RIMGU_PORT 3000
RIMGU_HOST localhost
RIMGU_ADDRESS 0.0.0.0
RIMGU_IMGUR_CLIENT_ID 546c25a59c58ad7

Contributing

PRs are welcome!

This software is released under the AGPL 3.0 license. In short, this means that if you make any modifications to the code and then publish the result (e.g. by hosting the result on a web server), you must publicly distribute your changes and declare that they also use AGPL 3.0.