update environment variable names

This commit is contained in:
Akbar Rahman 2024-01-02 03:54:09 +00:00
parent 09334831f7
commit 9c6b2247a7
Signed by: alvierahman90
GPG Key ID: 6217899F07CA2BDF
2 changed files with 10 additions and 6 deletions

View File

@ -24,9 +24,9 @@ GRONK_COMMIT = "dev"
PANDOC_SERVER_URL = os.getenv("PANDOC_SERVER_URL", r"http://localhost:3030/") PANDOC_SERVER_URL = os.getenv("PANDOC_SERVER_URL", r"http://localhost:3030/")
PANDOC_TIMEOUT = int(os.getenv("PANDOC_TIMEOUT", "120")) PANDOC_TIMEOUT = int(os.getenv("PANDOC_TIMEOUT", "120"))
CSS_DIR = Path(os.getenv("CSS_DIR", "/opt/gronk/css")) GRONK_CSS_DIR = Path(os.getenv("CSS_DIR", "/opt/gronk/css"))
JS_DIR = Path(os.getenv("JS_DIR", "/opt/gronk/js")) GRONK_JS_DIR = Path(os.getenv("JS_DIR", "/opt/gronk/js"))
TEMPLATES_DIR = Path(os.getenv("TEMPLATES_DIR", "/opt/gronk/templates")) GRONK_TEMPLATES_DIR = Path(os.getenv("TEMPLATES_DIR", "/opt/gronk/templates"))
JINJA_ENV = jinja2.Environment(loader=jinja2.PackageLoader("gronk"), JINJA_ENV = jinja2.Environment(loader=jinja2.PackageLoader("gronk"),
autoescape=jinja2.select_autoescape) autoescape=jinja2.select_autoescape)
@ -464,8 +464,12 @@ def main(args):
process_home_index(args) process_home_index(args)
# copy styling and js scripts necessary for function # copy styling and js scripts necessary for function
shutil.copytree(CSS_DIR, args.output_dir.joinpath('css'), dirs_exist_ok=True) shutil.copytree(GRONK_CSS_DIR,
shutil.copytree(JS_DIR, args.output_dir.joinpath('js'), dirs_exist_ok=True) args.output_dir.joinpath('css'),
dirs_exist_ok=True)
shutil.copytree(GRONK_JS_DIR,
args.output_dir.joinpath('js'),
dirs_exist_ok=True)
generate_tag_browser(args.output_dir.joinpath('tags')) generate_tag_browser(args.output_dir.joinpath('tags'))

View File

@ -70,7 +70,7 @@ Combine it with `find` to UUIDify all your markdown files (but make a backup fir
## Custom Styling ## Custom Styling
To completely replace the existing styling, set the environment variable `CSS_DIR` to another directory with To completely replace the existing styling, set the environment variable `GRONK_CSS_DIR` to another directory with
a file called `styles.css`. a file called `styles.css`.
To add additional styling, the default styling will attempt to import `styles.css` from the root of the notes To add additional styling, the default styling will attempt to import `styles.css` from the root of the notes