1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-06-24 22:23:16 +00:00

Allow overriding default port with environment variable

This commit is contained in:
janeczku 2017-02-06 16:00:29 +01:00
parent 63379fe5db
commit 0e883f0b46

View File

@ -34,6 +34,7 @@ SIDEBAR_AUTHOR = 64
SIDEBAR_BEST_RATED = 128
DEFAULT_PASS = "admin123"
DEFAULT_PORT = int(os.environ.get("CALIBRE_PORT", 8083))
@ -252,7 +253,7 @@ class Settings(Base):
mail_password = Column(String)
mail_from = Column(String)
config_calibre_dir = Column(String)
config_port = Column(Integer, default=8083)
config_port = Column(Integer, default=DEFAULT_PORT)
config_calibre_web_title = Column(String, default=u'Calibre-web')
config_books_per_page = Column(Integer, default=60)
config_random_books = Column(Integer, default=4)