mirror of
https://gitee.com/dcren/openiddict-documentation.git
synced 2025-07-15 22:55:37 +08:00
Set up the initial project structure
This commit is contained in:
commit
18462898ea
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
## Ignore docfx artifacts
|
||||||
|
|
||||||
|
/**/DROP/
|
||||||
|
/**/TEMP/
|
||||||
|
/**/packages/
|
||||||
|
/**/bin/
|
||||||
|
/**/obj/
|
||||||
|
_site
|
18
README.md
Normal file
18
README.md
Normal 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
43
docfx.json
Normal 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
2
index.md
Normal 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
1
introduction/index.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
# Add your introductions here!
|
2
introduction/toc.yml
Normal file
2
introduction/toc.yml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
- name: Introduction
|
||||||
|
href: index.md
|
Loading…
Reference in New Issue
Block a user