https://github.com/thutasann/dotnet-nextjs-stock-app
Dotnet-Core Nextjs Stock FullStack App
https://github.com/thutasann/dotnet-nextjs-stock-app
dotnet-core entity-framework-core mysql nextjs14 shadcn-ui tanstack-query
Last synced: about 1 month ago
JSON representation
Dotnet-Core Nextjs Stock FullStack App
- Host: GitHub
- URL: https://github.com/thutasann/dotnet-nextjs-stock-app
- Owner: thutasann
- Created: 2024-01-01T05:53:55.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-20T21:10:45.000Z (7 months ago)
- Last Synced: 2025-03-29T20:11:14.968Z (2 months ago)
- Topics: dotnet-core, entity-framework-core, mysql, nextjs14, shadcn-ui, tanstack-query
- Language: C#
- Homepage:
- Size: 15.7 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dotnet-Core Nextjs Stock FullStack App
This is the Stock FullStack App with DotnetCore and Nextjs and This app will be mainly focused on the `dotnet` backend.
## Tech Stacks
- Dotnet Core 7
- MySQL
- Entity Framework Core
- Nextjs (will be page router as app router not working properly w/ c# project :3)
- Typescript## Features
- Stock CRUD
- Comment CRUD
- one-many relations
- Data Validation
- Sorting
- Filtering
- Pagination
- API Identity JWT
- Register
- Token Service## Scripts
### Create Dotnet project
```bash
dotnet new webapi -o api
```### Dotnet Watch Run
```bash
cd api
``````bash
dotnet watch run
```### EF Database Migration
```bash
dotnet tool install --global dotnet-ef --version 7.*
``````bash
dotnet ef migrations add init
``````bash
dotnet ef database update
```