Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 1.33 KB

File metadata and controls

56 lines (38 loc) · 1.33 KB

reading-list

Dashboard

ReadingList is a simple web app designed to collect and trace rss and reddit articles. It is created for personal use to keep track of all the engineering blogs.

Keep in mind that this project is a work on progress especially front-end stuff :)

How To Run

Using provided dockercompose.yml just configure volume to provide backend application a directory to store database files. Dashboard can be accessed at http:localhost:3000

services:
  backend:
    build: reading-list-backend
    ports:
      - "6161:6161"
    container_name: reading-list-backend
    environment:
      - APP_NAME=reading-list
      - APP_PORT=6161
      - KTOR_PROFILES_ACTIVE=prod
    volumes:
      - '/your-custom-directory'
  web:
    build: reading-list-web
    ports:
      - "3000:3000"
    environment:
      - BACKEND_PORT=6161
    container_name: reading-list-web

Dashboard

You can add columns to the dashboard from chosen data sources.

Adding New Dashboard Column

Adding Data Sources

You can add any rss feed or subreddit as a data source.

Rss Collector Configuration Reddit Collector Configuration

Dark Mode

Dashboard Dark Mode