Skip to content

Commit

Permalink
Add docfx docs infrastructure
Browse files Browse the repository at this point in the history
  • Loading branch information
glopesdev committed May 24, 2024
1 parent 7b834e2 commit a52b583
Show file tree
Hide file tree
Showing 17 changed files with 822 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version": 1,
"isRoot": true,
"tools": {
"docfx": {
"version": "2.75.3",
"commands": [
"docfx"
]
}
}
}
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* text=auto
*.ico binary
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
###############
# folder #
###############
/**/DROP/
/**/TEMP/
/**/packages/
/**/bin/
/**/obj/
_exported_templates
_site
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[submodule "docfx-tools"]
path = docfx-tools
url = https://github.com/bonsai-rx/docfx-tools
[submodule "src/onix-refactor"]
path = src/onix-refactor
url = https://github.com/neurogears/onix-refactor.git
427 changes: 427 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions api/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
###############
# temp file #
###############
*.yml
.manifest
1 change: 1 addition & 0 deletions articles/introduction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Introduction
2 changes: 2 additions & 0 deletions articles/toc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- href: ../index.md
- href: introduction.md
1 change: 1 addition & 0 deletions docfx-tools
Submodule docfx-tools added at dc5044
76 changes: 76 additions & 0 deletions docfx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"metadata": [
{
"src": [
{
"files": [
"src/**.csproj"
]
}
],
"dest": "api",
"filter": "filter.yml"
}
],
"build": {
"content": [
{
"files": [
"**/*.{md,yml}"
],
"exclude": [
"_site/**",
"docfx-tools/**",
"filter.yml"
]
}
],
"resource": [
{
"files": [
"logo.svg",
"favicon.png",
"images/**",
"workflows/**"
]
}
],
"output": "_site",
"overwrite": [
{
"files": [
"apidoc/**.md"
],
"exclude": [
"obj/**",
"_site/**"
]
}
],
"template": [
"default",
"modern",
"docfx-tools/template",
"template"
],
"globalMetadata": {
"_enableNewTab": true,
"_enableSearch": true,
"pdf": false,
"_appFooter": "&copy; 2024 Open Ephys and Contributors. Made with <a href=\"https://dotnet.github.io/docfx\">docfx</a>",
"_appFaviconPath": "favicon.png"
},
"markdownEngineName": "markdig",
"markdownEngineProperties": {
"markdigExtensions": [
"attributes",
"customcontainers"
]
},
"xref": [
"https://bonsai-rx.org/docs/xrefmap.yml",
"https://horizongir.github.io/opencv.net/xrefmap.yml",
"https://horizongir.github.io/reactive/xrefmap.yml"
]
}
}
Binary file added favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions filter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
apiRules:
- exclude:
hasAttribute:
uid: System.ObsoleteAttribute
5 changes: 5 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Getting Started

`OpenEphys.Onix` is a [Bonsai](https://bonsai-rx.org/) interface for [Open Neuro Interface](https://github.com/open-ephys/ONI)-compliant hardware. All device initialization, configuration, and streaming functionality is exposed via reactive operators.

To install `OpenEphys.Onix` use the Bonsai package manager and search for the **OpenEphys.Onix** package.
264 changes: 264 additions & 0 deletions logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/onix-refactor
Submodule onix-refactor added at dcb94f
4 changes: 4 additions & 0 deletions toc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- name: Software Guide
href: articles/
- name: Technical Reference
href: api/
2 changes: 2 additions & 0 deletions workflows/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.layout
*.svg

0 comments on commit a52b583

Please sign in to comment.