7 lines
207 B
Python
7 lines
207 B
Python
import os
|
|
# Main config section
|
|
class Config:
|
|
APP_NAME = "hydrogen"
|
|
MAIN_PAGE_TITLE = "Selected poems"
|
|
OUTPUT_DIR = os.environ.get('OUTPUT_DIR') or 'public'
|
|
HEADER_IMAGE = 'static/header.jpg' |