-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e47436c
commit dca29bb
Showing
7 changed files
with
39 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Server Example: Community Template | ||
|
||
This is a template that simplifies your start with Piral.Blazor.Server. | ||
|
||
The template includes: | ||
|
||
- App Shell project | ||
- Two micro frontend projects (weather and counter) | ||
|
||
The code for this example is available at [github.com/wdevon99/Blazor-Microfrontends](https://github.com/wdevon99/Blazor-Microfrontends). | ||
|
||
More information regarding this template can also be found in the [article by Devon Wijesinghe](https://engineering.99x.io/building-micro-frontends-using-blazor-and-piral-framework-c38c5426ccee). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# Server: Tractor Shop | ||
# Server Example: Tractor Shop | ||
|
||
More infos soon. | ||
This example reconstructs the famous [Tractor Store v1](https://micro-frontends.org) example from Michael Geers. It separates each micro frontend in its own project - making them truly independent and deployable as individual pieces. | ||
|
||
Besides the implementation of the Tractor Store the example also shows how debugging of individual pieces can work in a joint setup. For this a few extras have been included. | ||
|
||
The example includes: | ||
|
||
- App Shell project | ||
- Three micro frontend projects (red, blue, green) | ||
- One empty micro frontend project showing how joint debugging / development works | ||
|
||
The code for this example is available at [github.com/FlorianRappl/Piral.Blazor.Server.Samples.Tractor](https://github.com/FlorianRappl/Piral.Blazor.Server.Samples.Tractor). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# SPA: Tractor Shop | ||
# SPA Example: Tractor Shop | ||
|
||
More infos soon. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# Frequently Asked Questions | ||
|
||
1. I cannot use breakpoints when I debug a Piral.Blazor pilet in VS. What could be wrong? | ||
### I cannot use breakpoints when I debug a Piral.Blazor pilet in VS. What could be wrong? | ||
|
||
Make sure you actually emit a PDB and have `Debug` selected as configuration. Also, don't change the configuration to have `<DebugType>Full</DebugType>` or similar in the project file. You'll need a portable PDB (modern format), not a full PDB (legacy format for Windows). | ||
|
||
### I think I need more help. Is there support available? | ||
|
||
Yes - just get in touch with us and we can figure out a way to support your development efforts (once, more often, or even continuously). | ||
|
||
One way to reach us is to join the [Discord server](https://discord.gg/kKJ2FZmK8t) and explain your problem there. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
# Guides | ||
|
||
- [Helpers](./helpers.md) | ||
- [FAQs](./faq.md) | ||
- [Roadmap](./roadmap.md) |