Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#31 merge global local schema #54

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
new setting for global/local schema merge
  • Loading branch information
Oliver Kandler committed Mar 4, 2024
commit 3d8e1f5e4ffea4ff909cb4c1e8c056ce1c6ae491
2 changes: 2 additions & 0 deletions blurry/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class Settings(TypedDict):
USE_HTTP: bool
RUNSERVER: bool
FRONTMATTER_NON_SCHEMA_VARIABLE_PREFIX: str
FRONT_MATTER_RESOLUTION: str


SETTINGS: Settings = {
Expand All @@ -46,6 +47,7 @@ class Settings(TypedDict):
"RUNSERVER": False,
"FRONTMATTER_NON_SCHEMA_VARIABLE_PREFIX": "~",
"TEMPLATE_SCHEMA_TYPES": {},
"FRONT_MATTER_RESOLUTION": "overwrite", # or "merge"
}


Expand Down