commit 18462898ea59565f42d9d552b2dcd61a7fb7c522 Author: Kévin Chalet Date: Tue Sep 12 17:46:13 2017 +0200 Set up the initial project structure diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d91923f --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +## Ignore docfx artifacts + +/**/DROP/ +/**/TEMP/ +/**/packages/ +/**/bin/ +/**/obj/ +_site diff --git a/README.md b/README.md new file mode 100644 index 0000000..7f1a54c --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# OpenIddict.Documentation + +This repository provides the documentation for the [OpenIddict](https://github.com/openiddict) project. + +## Support + +**Need help or wanna share your thoughts?** Don't hesitate to join us on Gitter or ask your question on StackOverflow: + +- **Gitter: [https://gitter.im/openiddict/openiddict-core](https://gitter.im/openiddict/openiddict-core)** +- **StackOverflow: [https://stackoverflow.com/questions/tagged/openiddict](https://stackoverflow.com/questions/tagged/openiddict)** + +## Contributors + +**OpenIddict** is actively maintained by **[Kévin Chalet](https://github.com/PinpointTownes)**. Contributions are welcome and can be submitted using pull requests. + +## License + +This project is licensed under the **Apache License**. This means that you can use, modify and distribute it freely. See [http://www.apache.org/licenses/LICENSE-2.0.html](http://www.apache.org/licenses/LICENSE-2.0.html) for more details. diff --git a/docfx.json b/docfx.json new file mode 100644 index 0000000..b5d962d --- /dev/null +++ b/docfx.json @@ -0,0 +1,43 @@ +{ + "build": { + "content": [ + { + "files": [ + "**/*.md", + "**/*.yml" + ], + "exclude": [ + "obj/**", + "_site/**" + ] + } + ], + "resource": [ + { + "files": [ + "**/*.png", + "**/*.jpg", + "**/*.gif", + "**/*.pdf", + "**/*.exe", + "**/*.wmv", + "**/*.zip" + ], + "exclude": [ + "obj/**", + "_site/**" + ] + } + ], + "dest": "_site", + "globalMetadataFiles": [], + "fileMetadataFiles": [], + "template": [ + "default" + ], + "postProcessors": [], + "noLangKeyword": false, + "keepFileLink": false, + "cleanupCacheHistory": false + } +} \ No newline at end of file diff --git a/index.md b/index.md new file mode 100644 index 0000000..05a43d7 --- /dev/null +++ b/index.md @@ -0,0 +1,2 @@ +# This is the **OpenIddict documentation**. +Refer to [Markdown](http://daringfireball.net/projects/markdown/) for how to write markdown files. diff --git a/introduction/index.md b/introduction/index.md new file mode 100644 index 0000000..c0478ce --- /dev/null +++ b/introduction/index.md @@ -0,0 +1 @@ +# Add your introductions here! diff --git a/introduction/toc.yml b/introduction/toc.yml new file mode 100644 index 0000000..b23e8ac --- /dev/null +++ b/introduction/toc.yml @@ -0,0 +1,2 @@ +- name: Introduction + href: index.md diff --git a/toc.yml b/toc.yml new file mode 100644 index 0000000..8b8d4d7 --- /dev/null +++ b/toc.yml @@ -0,0 +1,2 @@ +- name: Introduction + href: introduction/index.md