Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kherrick/postview
An adventure in C# on Linux, using Visual Studio Code and Blazor.
https://github.com/kherrick/postview
blazor web-assembly web-components
Last synced: 20 days ago
JSON representation
An adventure in C# on Linux, using Visual Studio Code and Blazor.
- Host: GitHub
- URL: https://github.com/kherrick/postview
- Owner: kherrick
- License: lgpl-3.0
- Created: 2018-11-30T04:12:21.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-05T02:47:41.000Z (about 5 years ago)
- Last Synced: 2024-11-06T01:31:28.453Z (2 months ago)
- Topics: blazor, web-assembly, web-components
- Language: C#
- Homepage: https://kherrick.github.io/postview/
- Size: 8.48 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# postview
An adventure in C# on Linux, using Visual Studio Code and Blazor.
# requirements
* [bash](https://www.gnu.org/software/bash/)
* [.NET Core 3.1](https://dotnet.microsoft.com/download/dotnet-core/3.1)# develop
```bash
dotnet run
```# initially bootstrapped with the following
```bash
#!/usr/bin/env bashreadonly APP_NAME='postview'
dotnet new -i Microsoft.AspNetCore.Blazor.Templates::3.1.0-preview4.19579.2 \
&& dotnet new blazorwasm -o "$APP_NAME" \
&& cd "$APP_NAME" || exit 1dotnet run
```