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
- Host: GitHub
- URL: https://github.com/thutasann/dotnet-nextjs-url-shortener
- Owner: thutasann
- Created: 2024-05-16T13:38:41.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-16T17:17:55.000Z (about 1 year ago)
- Last Synced: 2025-01-09T02:21:54.912Z (5 months ago)
- Topics: dotnet-core, entity-framework-core, mysql, nextjs14
- Language: TypeScript
- Homepage:
- Size: 136 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# .NET Core & Nextjs URL Shortener
This is the mini URL Shortener FullStack app with .NET Core and Nextjs.

## 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
```