mirror of https://github.com/dapr/docs.git
Add python submodule and mount
This commit is contained in:
parent
73da9970b3
commit
60f474cef4
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue