├── .dockerignore ├── .github └── workflows │ └── docker-publish.yml ├── Dockerfile ├── README.md ├── books └── test.fb2 ├── docker-compose.yml ├── go.mod ├── go.sum ├── logo.png ├── main.go ├── static ├── icon.png └── screenshot.png └── templates ├── admin.html ├── layout.html └── opds.xml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/README.md -------------------------------------------------------------------------------- /books/test.fb2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/books/test.fb2 -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/go.sum -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/logo.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/main.go -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/static/screenshot.png -------------------------------------------------------------------------------- /templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/templates/admin.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/opds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielPereod/opdshelf/HEAD/templates/opds.xml --------------------------------------------------------------------------------