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

https://github.com/layoric/litestreamweb

Testing out litestream
https://github.com/layoric/litestreamweb

Last synced: 4 months ago
JSON representation

Testing out litestream

Awesome Lists containing this project

README

          

# .NET 6.0 Vue 3 + Vite + Tailwindcss Template

[![](https://raw.githubusercontent.com/ServiceStack/Assets/master/csharp-templates/vue-vite.png)](https://vue-vite.jamstacks.net)
[![](https://raw.githubusercontent.com/ServiceStack/Assets/master/csharp-templates/start/vue-vite.png)](https://vue-vite.jamstacks.net)

> Browse [source code](https://github.com/NetCoreTemplates/vue-vite), view live demo [vue-vite.jamstacks.net](https://vue-vite.jamstacks.net) and install with [x new](https://docs.servicestack.net/dotnet-new):

This template should help get you started developing with Vue 3 and Typescript in Vite. The template uses Vue 3 `` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.

```bash
$ dotnet tool install -g x

$ x new vue-vite ProjectName
```

## Getting Started

Build Client UI & Run Dev Server

```bash
$ cd ui && npm run build:local
$ npm run dev
```

Run Server .NET Project (New Terminal)

```bash
$ cd api\ProjectName
$ dotnet watch
```

For more, see development workflow docs for
[JetBrains Rider](https://vue-vite.jamstacks.net/posts/rider)
and
[VS Code / VS .NET](https://vue-vite.jamstacks.net/posts/vs)

#### Use npm dev server for UI Development

- http://localhost:3000

#### `npm run build:local` to view in .NET App

- https://localhost:5001