Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 659 Bytes

README.md

File metadata and controls

36 lines (22 loc) · 659 Bytes

Opds-p

An OPDS server that proxies OPDS calls to yandex-disk webdav.

Configuring

Put to $HOME/.opds-p/app-settings.yaml the following configuration:

yandex-app:
  id: "<id-of-registered-yandex-application>"
  password: "<password-of-registered-yandex-application>"

Usage

Start server

lein ring server

or

lein ring server-headless

Build war

lein ring uberwar opds-p.war

Development with REPL

(require '[opdsp.core :refer :all])
(require '[ring.adapter.jetty :as rj]) (require '[opdsp.core :refer :all])
(future (rj/run-jetty standalone-routes {:port 3000}))