* add more redis config * Supported Release Info and Upgrade Path for v1.2 (#1494) * Supported Release Info and Upgrade Path for v1.2 * Update support-release-policy.md * Update daprdocs/content/en/operations/support/support-release-policy.md Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * Adding K8s versions table (#1521) * Adding table of kubernetes versions * Updating intro * Fix incorrect postgresql connection string example (#1524) Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * Update docs on using Codespaces with Dapr repos (#1522) * Update docs on using Codespaces with Dapr repos * Move codespaces.md under the Contributing topic * Update daprdocs/content/en/contributing/codespaces.md Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * Fix two typos (#1526) Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * Update chinese content (#1527) Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * Updated to fix deprecated helm chart location (#1528) The `https://kubernetes-charts.storage.googleapis.com/` location is no longer used, so this change updates this, the command to install, and the missing update step that will cause the install to fail if an update was never done after adding the location. Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * nr_consul_typo fixed malformed yaml (#1532) Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * Fix typo in azure-keyvault-managed-identity.md (#1541) * Fix custom middleware sample code interface implementation error (#1539) Fix custom middleware sample code interface implementation error, interface function declare error. Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * Fix the file name of secrets json (#1546) * Tech writing touch-ups (#1555) * Tech writing touch-ups (#1556) Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * Tech writing touch-ups (#1557) Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * Tech writing touch-ups (#1558) Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * Tech writing touch-ups (#1560) Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * Tech writing touch-ups (#1559) Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * Ignore intellij link that isn't resolvable (#1564) * Update issue templates (#1563) * Update issue templates * Add needs-triage * Updating PubSub documentation to remove slave wording (#1565) * Updating PubSub documentation to remove slave Bitnami has updated their Redis Helm chart to change redis-slave to redis-replicas. I am updating the documentation for PubSub to reflect this change and avoid confusion for any readers. * Removing more instances of Redis slave naming Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * Actor Runtime Configuration Docs (#1495) * Actor Runtime Configuration Docs Addresses #1470 * Update daprdocs/content/en/developing-applications/building-blocks/actors/howto-actors.md Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * Update daprdocs/content/en/developing-applications/building-blocks/actors/howto-actors.md Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> * add configuration examples * configuration examples * Fix syntax * Add dotnet sample * Update daprdocs/content/en/developing-applications/building-blocks/actors/howto-actors.md Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> Co-authored-by: Bernd Verst <berndverst@users.noreply.github.com> Co-authored-by: Aaron Crawfis <Aaron.Crawfis@microsoft.com> Co-authored-by: Mark Fussell <mfussell@microsoft.com> Co-authored-by: Zonciu Liang <zonciu@zonciu.com> Co-authored-by: Simon Leet <31784195+CodeMonkeyLeet@users.noreply.github.com> Co-authored-by: Maarten Mulders <mthmulders@users.noreply.github.com> Co-authored-by: Newbe36524 <newbe36524@qq.com> Co-authored-by: Steven Jenkins De Haro <20492442+StevenJDH@users.noreply.github.com> Co-authored-by: Abdulaziz Elsheikh <abdulaziz.elsheikh@gmail.com> Co-authored-by: Antonio Fiumanò <antoniofiumano@outlook.com> Co-authored-by: li1234yun <li1234yun@163.com> Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com> Co-authored-by: voipengineer <voipengineer@users.noreply.github.com> Co-authored-by: Evan Simkowitz <esimkowitz@users.noreply.github.com> |
||
---|---|---|
.github | ||
daprdocs | ||
sdkdocs | ||
translations | ||
.gitignore | ||
.gitmodules | ||
CODEOWNERS | ||
CONTRIBUTING.md | ||
LICENSE | ||
README.md |
README.md
Dapr documentation
If you are looking to explore the Dapr documentation, please go to the documentation website:
This repo contains the markdown files which generate the above website. See below for guidance on running with a local environment to contribute to the docs.
Branch guidance
The Dapr docs handles branching differently than most code repositories. Instead of having a master
or main
branch, every branch is labeled to match the major and minor version of a runtime release.
The following branches are currently maintained:
Branch | Website | Description |
---|---|---|
v1.2 (primary) | https://docs.dapr.io | Latest Dapr release documentation. Typo fixes, clarifications, and most documentation goes here. |
v1.3 (pre-release) | https://v1-3.docs.dapr.io/ | Pre-release documentation. Doc updates that are only applicable to v1.3+ go here. |
For more information visit the Dapr branch structure document.
Contribution guidelines
Before making your first contribution, make sure to review the contributing section in the docs.
Overview
The Dapr docs are built using Hugo with the Docsy theme, hosted on an Azure Static Web App.
The daprdocs directory contains the hugo project, markdown files, and theme configurations.
Pre-requisites
Environment setup
- Ensure pre-requisites are installed
- Clone this repository
git clone https://github.com/dapr/docs.git
- Change to daprdocs directory:
cd ./docs/daprdocs
- Update submodules:
git submodule update --init --recursive
- Install npm packages:
npm install
Run local server
- Make sure you're still in the
daprdocs
directory - Run
hugo server
- Navigate to
http://localhost:1313/
Update docs
- Fork repo into your account
- Create new branch
- Commit and push changes to forked branch
- Submit pull request from downstream branch to the upstream branch for the correct version you are targeting
- Staging site will automatically get created and linked to PR to review and test
Code of Conduct
Please refer to our Dapr community code of conduct.