Skip to content

Build issue 269 #286

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 1 addition & 70 deletions mkdocs.production.yml
Original file line number Diff line number Diff line change
@@ -1,74 +1,5 @@
INHERIT: ./mkdocs.shared.yml
site_name: Datasync Community Toolkit
site_url: https://CommunityToolkit.github.io/Datasync/
repo_url: https://github.com/CommunityToolkit/Datasync/
repo_name: GitHub

theme:
name: readthedocs
highlightjs: true
locale: en

validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn

markdown_extensions:
- smarty: {}
- toc:
permalink: "#"
- sane_lists: {}
- fenced_code: {}
- tables: {}
- admonition: {}
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name: mermaid2.fence_mermaid_custom

plugins:
- search
- mermaid2

nav:
- Getting started: index.md
- Tutorial:
- Server:
- "The basics": tutorial/server/part-1.md
- "Standard repositories": tutorial/server/part-2.md
- "Custom repositories": tutorial/server/part-3.md
- "Access control": tutorial/server/part-4.md
- "Real-time updates": tutorial/server/part-5.md
- In depth:
- Server:
- The basics: in-depth/server/index.md
- Databases:
- Azure SQL: in-depth/server/db/azuresql.md
- Cosmos: in-depth/server/db/cosmos.md
- In Memory: in-depth/server/db/in-memory.md
- LiteDb: in-depth/server/db/litedb.md
- MongoDb: in-depth/server/db/mongodb.md
- MySQL: in-depth/server/db/mysql.md
- PgSQL: in-depth/server/db/pgsql.md
- SQLite: in-depth/server/db/sqlite.md
- OpenApi:
- NSwag: in-depth/server/openapi/nswag.md
- Swashbuckle: in-depth/server/openapi/swashbuckle.md
- ".NET 9.x": in-depth/server/openapi/net9.md
- Client:
- The basics: in-depth/client/index.md
- Authentication: in-depth/client/auth.md
- Online operations: in-depth/client/online.md
- Advanced topics:
- MAUI AOT: in-depth/client/advanced/maui-aot.md
- Samples:
- Todo App:
- The server: samples/todoapp/server.md
- Avalonia: samples/todoapp/avalonia.md
- MAUI: samples/todoapp/maui.md
- WinUI3: samples/todoapp/winui3.md
- WPF: samples/todoapp/wpf.md


63 changes: 63 additions & 0 deletions mkdocs.shared.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
theme:
name: readthedocs
highlightjs: true
locale: en

validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn

plugins:
- search
- mermaid2

markdown_extensions:
- smarty: {}
- toc:
permalink: "#"
- sane_lists: {}
- fenced_code: {}
- tables: {}
- admonition: {}
- pymdownx.superfences: {}

nav:
- Getting started: index.md
- Tutorial:
- Server:
- "The basics": tutorial/server/part-1.md
- "Standard repositories": tutorial/server/part-2.md
- "Custom repositories": tutorial/server/part-3.md
- "Access control": tutorial/server/part-4.md
- "Real-time updates": tutorial/server/part-5.md
- In depth:
- Server:
- The basics: in-depth/server/index.md
- Databases:
- Azure SQL: in-depth/server/db/azuresql.md
- Cosmos: in-depth/server/db/cosmos.md
- In Memory: in-depth/server/db/in-memory.md
- LiteDb: in-depth/server/db/litedb.md
- MongoDb: in-depth/server/db/mongodb.md
- MySQL: in-depth/server/db/mysql.md
- PgSQL: in-depth/server/db/pgsql.md
- SQLite: in-depth/server/db/sqlite.md
- OpenApi:
- NSwag: in-depth/server/openapi/nswag.md
- Swashbuckle: in-depth/server/openapi/swashbuckle.md
- ".NET 9.x": in-depth/server/openapi/net9.md
- Client:
- The basics: in-depth/client/index.md
- Authentication: in-depth/client/auth.md
- Online operations: in-depth/client/online.md
- Advanced topics:
- MAUI AOT: in-depth/client/advanced/maui-aot.md
- Samples:
- Todo App:
- The server: samples/todoapp/server.md
- Avalonia: samples/todoapp/avalonia.md
- MAUI: samples/todoapp/maui.md
- WinUI3: samples/todoapp/winui3.md
- WPF: samples/todoapp/wpf.md
65 changes: 1 addition & 64 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,66 +1,3 @@
INHERIT: ./mkdocs.shared.yml
site_name: Datasync Community Toolkit
dev_addr: localhost:7000

theme:
name: readthedocs
highlightjs: true
locale: en

validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn

markdown_extensions:
- smarty: {}
- toc:
permalink: "#"
- sane_lists: {}
- fenced_code: {}
- tables: {}
- admonition: {}
- pymdownx.superfences: {}

plugins:
- search
- mermaid2

nav:
- Getting started: index.md
- Tutorial:
- Server:
- "The basics": tutorial/server/part-1.md
- "Standard repositories": tutorial/server/part-2.md
- "Custom repositories": tutorial/server/part-3.md
- "Access control": tutorial/server/part-4.md
- "Real-time updates": tutorial/server/part-5.md
- In depth:
- Server:
- The basics: in-depth/server/index.md
- Databases:
- Azure SQL: in-depth/server/db/azuresql.md
- Cosmos: in-depth/server/db/cosmos.md
- In Memory: in-depth/server/db/in-memory.md
- LiteDb: in-depth/server/db/litedb.md
- MongoDb: in-depth/server/db/mongodb.md
- MySQL: in-depth/server/db/mysql.md
- PgSQL: in-depth/server/db/pgsql.md
- SQLite: in-depth/server/db/sqlite.md
- OpenApi:
- NSwag: in-depth/server/openapi/nswag.md
- Swashbuckle: in-depth/server/openapi/swashbuckle.md
- ".NET 9.x": in-depth/server/openapi/net9.md
- Client:
- The basics: in-depth/client/index.md
- Authentication: in-depth/client/auth.md
- Online operations: in-depth/client/online.md
- Advanced topics:
- MAUI AOT: in-depth/client/advanced/maui-aot.md
- Samples:
- Todo App:
- The server: samples/todoapp/server.md
- Avalonia: samples/todoapp/avalonia.md
- MAUI: samples/todoapp/maui.md
- WinUI3: samples/todoapp/winui3.md
- WPF: samples/todoapp/wpf.md