소스 검색

Add template module cache dir.

master
Ben Kurtovic 7 년 전
부모
커밋
a43bb9b13c
2개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      .gitignore
  2. +2
    -0
      calefaction/config.py

+ 1
- 0
.gitignore 파일 보기

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

!config/*.sample
!config/modules


+ 2
- 0
calefaction/config.py 파일 보기

@@ -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:


불러오는 중...
취소
저장