An open API service indexing awesome lists of open source software.

https://github.com/adrum/dotnet-inertia-react

An example project for using .NET Core, Inertia and React
https://github.com/adrum/dotnet-inertia-react

Last synced: over 1 year ago
JSON representation

An example project for using .NET Core, Inertia and React

Awesome Lists containing this project

README

          

# .NET Core + Inertia + React Boilerplate

This is an example project for utilizing [InertiaCore](https://github.com/kapi2289/InertiaCore) with [React](https://react.dev/) and [Vite](https://vitejs.dev/).

## Getting Started

```bash
# Clone the repo
git clone {this repo url}

cd dotnet-inertia-react

dotnet restore

dotnet build

dotnet publish
```

## Development

```bash
cd ClientApp
npm run dev

# in another terminal
dotnet watch run
```

## VSCode

Helpful vscode tasks also exits. The "Watch All" task automates the steps in the Development section above.