From 73d049051b843eb862afd11ef200f718ea10e3c2 Mon Sep 17 00:00:00 2001 From: OzzieIsaacs Date: Sat, 28 Jan 2017 20:29:04 +0100 Subject: [PATCH] - Fully graphical setup (can be changed as admin under configuration) - Title of calibre-web can be changed, to distinguish between different installations - View of "random books" can be changed independent of discover books - Author view in sidebar can be switched of ###################################### !!!!This is a big change, I recommend everybody updating from an earlier version to do a backup before upgrading!!!! ###################################### --- config.ini.example | 13 ------------- readme.md | 24 +++++++++++++++--------- 2 files changed, 15 insertions(+), 22 deletions(-) delete mode 100644 config.ini.example diff --git a/config.ini.example b/config.ini.example deleted file mode 100644 index 02a57541..00000000 --- a/config.ini.example +++ /dev/null @@ -1,13 +0,0 @@ -[General] -DB_ROOT = -APP_DB_ROOT = -MAIN_DIR = -LOG_DIR = -PORT = 8083 -NEWEST_BOOKS = 60 -[Advanced] -TITLE_REGEX = ^(A|The|An|Der|Die|Das|Den|Ein|Eine|Einen|Dem|Des|Einem|Eines)\s+ -DEVELOPMENT = 0 -PUBLIC_REG = 0 -UPLOADING = 0 -ANON_BROWSE = 0 diff --git a/readme.md b/readme.md index de49ee80..75d50672 100755 --- a/readme.md +++ b/readme.md @@ -8,6 +8,7 @@ Calibre Web is a web app providing a clean interface for browsing, reading and d ##Features - Bootstrap 3 HTML5 interface +- full graphical setup - User management - Admin interface - User Interface in english, french, german, simplified chinese, spanish @@ -26,9 +27,10 @@ Calibre Web is a web app providing a clean interface for browsing, reading and d ## Quick start -1. Rename `config.ini.example` to `config.ini` and set `DB_ROOT` to the path of the folder where your Calibre library (metadata.db) lives -2. Execute the command: `python cps.py` -3. Point your browser to `http://localhost:8083` or `http://localhost:8083/opds` for the OPDS catalog +1. Execute the command: `python cps.py` +2. Point your browser to `http://localhost:8083` or `http://localhost:8083/opds` for the OPDS catalog +3. Set `Location of Calibre database` to the path of the folder where your Calibre library (metadata.db) lives, push "submit" button +4. Go to Login page **Default admin login:** *Username:* admin @@ -36,12 +38,16 @@ Calibre Web is a web app providing a clean interface for browsing, reading and d ## Runtime Configuration Options -`PUBLIC_REG` -Set to 1 to enable public user registration. -`ANON_BROWSE` -Set to 1 to allow not logged in users to browse the catalog. -`UPLOADING` -Set to 1 to enable PDF uploading. This requires the imagemagick library to be installed. +The configuration can be changed as admin in the admin panel under "Configuration" + +Server Port: +Changes the port calibre-web is listening, changes take effect after pressing submit button +Enable public registration: +Tick to enable public user registration. +Enable anonymous browsing: +Tick to allow not logged in users to browse the catalog, anonymous user permissions can be set as admin ("Guest" user) +Enable uploading: +Tick to enable uploading of PDF, epub, FB2. This requires the imagemagick library to be installed. ## Requirements