Skip to content

Commit

Permalink
Move applicable changes into 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronCrawfis committed Jan 22, 2021
1 parent 9524e83 commit ba069da
Show file tree
Hide file tree
Showing 16 changed files with 717 additions and 293 deletions.
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[submodule "daprdocs/themes/docsy"]
path = daprdocs/themes/docsy
url = https://github.com/google/docsy.git
[submodule "sdkdocs/python"]
path = sdkdocs/python
url = https://github.com/dapr/python-sdk.git

30 changes: 28 additions & 2 deletions daprdocs/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@
baseURL = "https://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"]
Expand All @@ -18,6 +17,33 @@ 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/en/python-sdk-docs"
target = "content/developing-applications/sdks/python"
[[module.mounts]]
source = "../sdkdocs/python/daprdocs/content/en/python-sdk-contributing"
target = "content/contributing/"

# Markdown Engine - Allow inline html
[markup]
[markup.goldmark]
Expand Down

This file was deleted.

0 comments on commit ba069da

Please sign in to comment.