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

https://github.com/thutasann/dotnet-nextjs-url-shortener

.NET Core & Nextjs URL Shortener App
https://github.com/thutasann/dotnet-nextjs-url-shortener

dotnet-core entity-framework-core mysql nextjs14

Last synced: 3 months ago
JSON representation

.NET Core & Nextjs URL Shortener App

Awesome Lists containing this project

README

        

# .NET Core & Nextjs URL Shortener

This is the mini URL Shortener FullStack app with .NET Core and Nextjs.

![Demo](./examples/demo.png)

## Tech Stacks

- .NET Core
- EF Core
- MySQL
- Nextjs
- TanStack Query
- ShadcnUI

## Scripts

### Dotnet Create Minimal Web API

```bash
dotnet new webapi -minimal -n server
```

### EF Migration

```bash
dotnet ef migrations add Init
```

```bash
dotnet ef database update
```