Browse Source

Add template module cache dir.

master
Ben Kurtovic 7 years ago
parent
commit
a43bb9b13c
2 changed files with 3 additions and 0 deletions
  1. +1
    -0
      .gitignore
  2. +2
    -0
      calefaction/config.py

+ 1
- 0
.gitignore View File

@@ -6,6 +6,7 @@ config/*
config/modules/*
data/*
logs/
templates/.cache/

!config/*.sample
!config/modules


+ 2
- 0
calefaction/config.py View File

@@ -73,6 +73,8 @@ class Config:
"""Install relevant config into the application, including modules."""
app.config["SERVER_NAME"] = self.get("site.canonical")
app.config["PREFERRED_URL_SCHEME"] = self.scheme
app.config["MAKO_MODULE_DIRECTORY"] = str(
self._dir.parent / "templates" / ".cache")
app.secret_key = self.get("auth.session_key")

for module in self.modules:


Loading…
Cancel
Save