Skip to content

Commit 98034ca

Browse files
committed
Merge remote-tracking branch 'origin/master' into routing-with-single-model
2 parents aa97eaf + 0baae7e commit 98034ca

File tree

1 file changed

+118
-118
lines changed

1 file changed

+118
-118
lines changed

mkdocs.yml

Lines changed: 118 additions & 118 deletions
Original file line numberDiff line numberDiff line change
@@ -41,121 +41,121 @@ extra:
4141
link: https://safe-stack.github.io/
4242

4343
nav:
44-
- Home: "index.md"
45-
- Introduction: "intro.md"
46-
- Quickstart: "quickstart.md"
47-
- SAFE Stack:
48-
- Overview: "overview.md"
49-
- Components:
50-
- Learn about Saturn : "components/component-saturn.md"
51-
- Learn about Azure : "components/component-azure.md"
52-
- Learn about Fable : "components/component-fable.md"
53-
- Learn about Elmish : "components/component-elmish.md"
54-
- Features:
55-
- Client / Server Sharing:
56-
- Sharing Overview : "features/feature-clientserver.md"
57-
- Sharing Types and Code : "features/feature-clientserver-basics.md"
58-
- Messaging using HTTP : "features/feature-clientserver-http.md"
59-
- Messaging with Protocols : "features/feature-clientserver-remoting.md"
60-
- Stateful Messaging through Bridge : "features/feature-clientserver-bridge.md"
61-
- Serialization in SAFE : "features/feature-clientserver-serialization.md"
62-
- Server Side Rendering : "features/feature-ssr.md"
63-
- Hot Module Replacement : "features/feature-hmr.md"
64-
- Working with Azure functions : "features/feature-azurefunctions.md"
65-
- The SAFE Template:
66-
- Overview: "template-overview.md"
67-
- Commands: "template-safe-commands.md"
68-
- How do I...:
69-
- Upgrade from V2 to V3 : "recipes/upgrading/v2-to-v3.md"
70-
- Upgrade from V3 to V4 : "recipes/upgrading/v3-to-v4.md"
71-
- Upgrade from V4 to V5 : "recipes/upgrading/v4-to-v5.md"
72-
- Create a new Recipe: "recipes/template.md"
73-
- Build:
74-
- Add build automation: "recipes/build/add-build-script.md"
75-
- Create a docker image: "recipes/build/docker-image.md"
76-
- Remove FAKE: "recipes/build/remove-fake.md"
77-
- Package my SAFE app for deployment: "recipes/build/bundle-app.md"
78-
- UI:
79-
- Add Tailwind support: "recipes/ui/add-tailwind.md"
80-
- Add daisyUI support: "recipes/ui/add-daisyui.md"
81-
- Add Stylesheet support: "recipes/ui/add-style.md"
82-
- Add Feliz support: "recipes/ui/add-feliz.md"
83-
- Add FontAwesome support: "recipes/ui/add-fontawesome.md"
84-
- Migrate from a CDN stylesheet to an NPM package: "recipes/ui/cdn-to-npm.md"
85-
- Add routing with state shared between pages: "recipes/ui/add-routing.md"
86-
- Storage:
87-
- Quickly add a database: "recipes/storage/use-litedb.md"
88-
- JavaScript:
89-
- Import a JavaScript module: "recipes/javascript/import-js-module.md"
90-
- Add Support for a Third Party React Library: "recipes/javascript/third-party-react-package.md"
91-
- Package Management:
92-
- Add an NPM package to the Client: "recipes/package-management/add-npm-package-to-client.md"
93-
- Add a NuGet package to the Server: "recipes/package-management/add-nuget-package-to-server.md"
94-
- Add a NuGet package to the Client: "recipes/package-management/add-nuget-package-to-client.md"
95-
- Migrate to Paket from NuGet: "recipes/package-management/migrate-to-paket.md"
96-
- Migrate to NuGet from Paket: "recipes/package-management/migrate-to-nuget.md"
97-
- Sync NuGet and NPM Packages: "recipes/package-management/sync-nuget-and-npm-packages.md"
98-
- Client / Server:
99-
- Use Giraffe instead of Saturn: "recipes/client-server/saturn-to-giraffe.md"
100-
- Handle server errors on the client: "recipes/client-server/server-errors-on-client.md"
101-
- Upload file from the client: "recipes/client-server/upload-file-from-client.md"
102-
- Serve a file from the back-end: "recipes/client-server/serve-a-file-from-the-backend.md"
103-
- Add support for Fable Remoting: "recipes/client-server/fable-remoting.md"
104-
- Perform roundtrips with MVU: "recipes/client-server/mvu-roundtrip.md"
105-
- Get data from the server: "recipes/client-server/messaging.md"
106-
- Post data to the server: "recipes/client-server/messaging-post.md"
107-
- Share code between the client and the server: "recipes/client-server/share-code.md"
108-
- FAQs:
109-
- Moving from dev to prod : "faq/faq-build.md"
110-
- Troubleshooting : "faq/faq-troubleshooting.md"
111-
- Learning Resources:
112-
- SAFE-Compatible UI Components: "awesome-safe-components.md"
113-
- Learning: "learning.md"
114-
- News: "news.md"
115-
- Events: "events.md"
116-
- Support: "support.md"
117-
- Testimonials: "testimonials.md"
118-
- Legacy recipes (v4):
119-
- Build:
120-
- Add build automation: "v4-recipes/build/add-build-script.md"
121-
- Remove FAKE: "v4-recipes/build/remove-fake.md"
122-
- Package my SAFE app for deployment: "v4-recipes/build/bundle-app.md"
123-
- Create a docker image: "v4-recipes/build/docker-image.md"
124-
- Dev / Test:
125-
- Test the Client: "v4-recipes/developing-and-testing/testing-the-client.md"
126-
- Test the Server: "v4-recipes/developing-and-testing/testing-the-server.md"
127-
- Debug a SAFE app: "v4-recipes/developing-and-testing/debug-safe-app.md"
128-
- Use hot reload: "v4-recipes/developing-and-testing/using-hot-reload.md"
129-
- Client / Server:
130-
- Add support for Fable Remoting: "v4-recipes/client-server/fable-remoting.md"
131-
- Perform roundtrips with MVU: "v4-recipes/client-server/mvu-roundtrip.md"
132-
- Get data from the server: "v4-recipes/client-server/messaging.md"
133-
- Post data to the server: "v4-recipes/client-server/messaging-post.md"
134-
- Handle server errors on the client: "v4-recipes/client-server/server-errors-on-client.md"
135-
- Share code between the client and the server: "v4-recipes/client-server/share-code.md"
136-
- Use Giraffe instead of Saturn: "v4-recipes/client-server/saturn-to-giraffe.md"
137-
- Upload file from the client: "v4-recipes/client-server/upload-file-from-client.md"
138-
- Serve a file from the back-end: "v4-recipes/client-server/serve-a-file-from-the-backend.md"
139-
- Add support for Fable.Forms: "v4-recipes/client-server/fable.forms.md"
140-
- Data:
141-
- Quickly add a database: "v4-recipes/storage/use-litedb.md"
142-
- Create a data module using SQLProvider SQL Server SSDT: "v4-recipes/storage/use-sqlprovider-ssdt.md"
143-
- UI:
144-
- Add FontAwesome support: "v4-recipes/ui/add-fontawesome.md"
145-
- Add Bulma support: "v4-recipes/ui/add-bulma.md"
146-
- Use different Bulma Themes: "v4-recipes/ui/use-different-bulma-themes.md"
147-
- Remove Bulma: "v4-recipes/ui/remove-bulma.md"
148-
- Add Tailwind support: "v4-recipes/ui/add-tailwind.md"
149-
- Add daisyUI support: "v4-recipes/ui/add-daisyui.md"
150-
- Migrate from a CDN stylesheet to an NPM package: "v4-recipes/ui/cdn-to-npm.md"
151-
- Add routing with state shared between pages: "v4-recipes/ui/add-routing.md"
152-
- Add routing with separate models per page: "v4-recipes/ui/add-routing-with-separate-models.md"
153-
- Add Routing with UseElmish: "v4-recipes/ui/routing-with-elmish.md"
154-
- JavaScript:
155-
- Import a JavaScript module: "v4-recipes/javascript/import-js-module.md"
156-
- Add Support for a Third Party React Library: "v4-recipes/javascript/third-party-react-package.md"
157-
- Package Management:
158-
- Add a NuGet package to the Server: "v4-recipes/package-management/add-nuget-package-to-server.md"
159-
- Migrate to Paket from NuGet: "v4-recipes/package-management/migrate-to-paket.md"
160-
- Migrate to NuGet from Paket: "v4-recipes/package-management/migrate-to-nuget.md"
161-
- Sync NuGet and NPM Packages: "v4-recipes/package-management/sync-nuget-and-npm-packages.md"
44+
- Home: "index.md"
45+
- Introduction: "intro.md"
46+
- Quickstart: "quickstart.md"
47+
- SAFE Stack:
48+
- Overview: "overview.md"
49+
- Components:
50+
- Learn about Saturn: "components/component-saturn.md"
51+
- Learn about Azure: "components/component-azure.md"
52+
- Learn about Fable: "components/component-fable.md"
53+
- Learn about Elmish: "components/component-elmish.md"
54+
- Features:
55+
- Client / Server Sharing:
56+
- Sharing Overview: "features/feature-clientserver.md"
57+
- Sharing Types and Code: "features/feature-clientserver-basics.md"
58+
- Messaging using HTTP: "features/feature-clientserver-http.md"
59+
- Messaging with Protocols: "features/feature-clientserver-remoting.md"
60+
- Stateful Messaging through Bridge: "features/feature-clientserver-bridge.md"
61+
- Serialization in SAFE: "features/feature-clientserver-serialization.md"
62+
- Server Side Rendering: "features/feature-ssr.md"
63+
- Hot Module Replacement: "features/feature-hmr.md"
64+
- Working with Azure functions: "features/feature-azurefunctions.md"
65+
- The SAFE Template:
66+
- Overview: "template-overview.md"
67+
- Commands: "template-safe-commands.md"
68+
- How do I...:
69+
- Upgrade from V2 to V3: "recipes/upgrading/v2-to-v3.md"
70+
- Upgrade from V3 to V4: "recipes/upgrading/v3-to-v4.md"
71+
- Upgrade from V4 to V5: "recipes/upgrading/v4-to-v5.md"
72+
- Create a new Recipe: "recipes/template.md"
73+
- Build:
74+
- Add build automation: "recipes/build/add-build-script.md"
75+
- Create a docker image: "recipes/build/docker-image.md"
76+
- Remove FAKE: "recipes/build/remove-fake.md"
77+
- Package my SAFE app for deployment: "recipes/build/bundle-app.md"
78+
- UI:
79+
- Add Tailwind support: "recipes/ui/add-tailwind.md"
80+
- Add daisyUI support: "recipes/ui/add-daisyui.md"
81+
- Add Stylesheet support: "recipes/ui/add-style.md"
82+
- Add Feliz support: "recipes/ui/add-feliz.md"
83+
- Add FontAwesome support: "recipes/ui/add-fontawesome.md"
84+
- Migrate from a CDN stylesheet to an NPM package: "recipes/ui/cdn-to-npm.md"
85+
- Add routing with state shared between pages: "recipes/ui/add-routing.md"
86+
- Storage:
87+
- Quickly add a database: "recipes/storage/use-litedb.md"
88+
- JavaScript:
89+
- Import a JavaScript module: "recipes/javascript/import-js-module.md"
90+
- Add Support for a Third Party React Library: "recipes/javascript/third-party-react-package.md"
91+
- Package Management:
92+
- Add an NPM package to the Client: "recipes/package-management/add-npm-package-to-client.md"
93+
- Add a NuGet package to the Server: "recipes/package-management/add-nuget-package-to-server.md"
94+
- Add a NuGet package to the Client: "recipes/package-management/add-nuget-package-to-client.md"
95+
- Migrate to Paket from NuGet: "recipes/package-management/migrate-to-paket.md"
96+
- Migrate to NuGet from Paket: "recipes/package-management/migrate-to-nuget.md"
97+
- Sync NuGet and NPM Packages: "recipes/package-management/sync-nuget-and-npm-packages.md"
98+
- Client / Server:
99+
- Use Giraffe instead of Saturn: "recipes/client-server/saturn-to-giraffe.md"
100+
- Handle server errors on the client: "recipes/client-server/server-errors-on-client.md"
101+
- Upload file from the client: "recipes/client-server/upload-file-from-client.md"
102+
- Serve a file from the back-end: "recipes/client-server/serve-a-file-from-the-backend.md"
103+
- Add support for Fable Remoting: "recipes/client-server/fable-remoting.md"
104+
- Perform roundtrips with MVU: "recipes/client-server/mvu-roundtrip.md"
105+
- Get data from the server: "recipes/client-server/messaging.md"
106+
- Post data to the server: "recipes/client-server/messaging-post.md"
107+
- Share code between the client and the server: "recipes/client-server/share-code.md"
108+
- FAQs:
109+
- Moving from dev to prod: "faq/faq-build.md"
110+
- Troubleshooting: "faq/faq-troubleshooting.md"
111+
- Learning Resources:
112+
- SAFE-Compatible UI Components: "awesome-safe-components.md"
113+
- Learning: "learning.md"
114+
- News: "news.md"
115+
- Events: "events.md"
116+
- Support: "support.md"
117+
- Testimonials: "testimonials.md"
118+
- Legacy recipes (v4):
119+
- Build:
120+
- Add build automation: "v4-recipes/build/add-build-script.md"
121+
- Remove FAKE: "v4-recipes/build/remove-fake.md"
122+
- Package my SAFE app for deployment: "v4-recipes/build/bundle-app.md"
123+
- Create a docker image: "v4-recipes/build/docker-image.md"
124+
- Dev / Test:
125+
- Test the Client: "v4-recipes/developing-and-testing/testing-the-client.md"
126+
- Test the Server: "v4-recipes/developing-and-testing/testing-the-server.md"
127+
- Debug a SAFE app: "v4-recipes/developing-and-testing/debug-safe-app.md"
128+
- Use hot reload: "v4-recipes/developing-and-testing/using-hot-reload.md"
129+
- Client / Server:
130+
- Add support for Fable Remoting: "v4-recipes/client-server/fable-remoting.md"
131+
- Perform roundtrips with MVU: "v4-recipes/client-server/mvu-roundtrip.md"
132+
- Get data from the server: "v4-recipes/client-server/messaging.md"
133+
- Post data to the server: "v4-recipes/client-server/messaging-post.md"
134+
- Handle server errors on the client: "v4-recipes/client-server/server-errors-on-client.md"
135+
- Share code between the client and the server: "v4-recipes/client-server/share-code.md"
136+
- Use Giraffe instead of Saturn: "v4-recipes/client-server/saturn-to-giraffe.md"
137+
- Upload file from the client: "v4-recipes/client-server/upload-file-from-client.md"
138+
- Serve a file from the back-end: "v4-recipes/client-server/serve-a-file-from-the-backend.md"
139+
- Add support for Fable.Forms: "v4-recipes/client-server/fable.forms.md"
140+
- Data:
141+
- Quickly add a database: "v4-recipes/storage/use-litedb.md"
142+
- Create a data module using SQLProvider SQL Server SSDT: "v4-recipes/storage/use-sqlprovider-ssdt.md"
143+
- UI:
144+
- Add FontAwesome support: "v4-recipes/ui/add-fontawesome.md"
145+
- Add Bulma support: "v4-recipes/ui/add-bulma.md"
146+
- Use different Bulma Themes: "v4-recipes/ui/use-different-bulma-themes.md"
147+
- Remove Bulma: "v4-recipes/ui/remove-bulma.md"
148+
- Add Tailwind support: "v4-recipes/ui/add-tailwind.md"
149+
- Add daisyUI support: "v4-recipes/ui/add-daisyui.md"
150+
- Migrate from a CDN stylesheet to an NPM package: "v4-recipes/ui/cdn-to-npm.md"
151+
- Add routing with state shared between pages: "v4-recipes/ui/add-routing.md"
152+
- Add routing with separate models per page: "v4-recipes/ui/add-routing-with-separate-models.md"
153+
- Add Routing with UseElmish: "v4-recipes/ui/routing-with-elmish.md"
154+
- JavaScript:
155+
- Import a JavaScript module: "v4-recipes/javascript/import-js-module.md"
156+
- Add Support for a Third Party React Library: "v4-recipes/javascript/third-party-react-package.md"
157+
- Package Management:
158+
- Add a NuGet package to the Server: "v4-recipes/package-management/add-nuget-package-to-server.md"
159+
- Migrate to Paket from NuGet: "v4-recipes/package-management/migrate-to-paket.md"
160+
- Migrate to NuGet from Paket: "v4-recipes/package-management/migrate-to-nuget.md"
161+
- Sync NuGet and NPM Packages: "v4-recipes/package-management/sync-nuget-and-npm-packages.md"

0 commit comments

Comments
 (0)