Add python submodule and mount

This commit is contained in:
Aaron Crawfis 2020-12-16 13:21:03 -08:00
parent 73da9970b3
commit 60f474cef4
1 changed files with 25 additions and 2 deletions

View File

@ -2,14 +2,13 @@
baseURL = "https://v1-rc2.docs.dapr.io/"
title = "Dapr Docs"
theme = "docsy"
disableFastRender = true
enableRobotsTXT = true
enableGitInfo = true
# Language Configuration
languageCode = "en-us"
contentDir = "content/en"
defaultContentLanguage = "en"
# Disable categories & tags
disableKinds = ["taxonomy", "term"]
@ -18,6 +17,30 @@ disableKinds = ["taxonomy", "term"]
[services.googleAnalytics]
id = "UA-149338238-3"
# Mounts
[module]
[[module.mounts]]
source = "content/en"
target = "content"
[[module.mounts]]
source = "static"
target = "static"
[[module.mounts]]
source = "layouts"
target = "layouts"
[[module.mounts]]
source = "data"
target = "data"
[[module.mounts]]
source = "assets"
target = "assets"
[[module.mounts]]
source = "archetypes"
target = "archetypes"
[[module.mounts]]
source = "../sdkdocs/python/daprdocs/content"
target = "content/developing-applications/sdks/python"
# Markdown Engine - Allow inline html
[markup]
[markup.goldmark]