Set up the initial project structure

This commit is contained in:
Kévin Chalet 2017-09-12 17:46:13 +02:00
commit 18462898ea
7 changed files with 76 additions and 0 deletions

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
## Ignore docfx artifacts
/**/DROP/
/**/TEMP/
/**/packages/
/**/bin/
/**/obj/
_site

18
README.md Normal file
View File

@ -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.

43
docfx.json Normal file
View File

@ -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
}
}

2
index.md Normal file
View File

@ -0,0 +1,2 @@
# This is the **OpenIddict documentation**.
Refer to [Markdown](http://daringfireball.net/projects/markdown/) for how to write markdown files.

1
introduction/index.md Normal file
View File

@ -0,0 +1 @@
# Add your introductions here!

2
introduction/toc.yml Normal file
View File

@ -0,0 +1,2 @@
- name: Introduction
href: index.md

2
toc.yml Normal file
View File

@ -0,0 +1,2 @@
- name: Introduction
href: introduction/index.md