https://github.com/persteenolsen/dotnet-8-jwt-auth-api
A .NET 8 REST API using JWT for Authentiction
https://github.com/persteenolsen/dotnet-8-jwt-auth-api
dotnet jwt-token rest-api
Last synced: 5 months ago
JSON representation
A .NET 8 REST API using JWT for Authentiction
- Host: GitHub
- URL: https://github.com/persteenolsen/dotnet-8-jwt-auth-api
- Owner: persteenolsen
- License: mit
- Created: 2024-04-23T13:47:08.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-11T15:11:07.000Z (6 months ago)
- Last Synced: 2025-01-11T16:22:16.929Z (6 months ago)
- Topics: dotnet, jwt-token, rest-api
- Language: C#
- Homepage: https://dotnet.jwt.auth.api.persteenolsen.com/users
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotnet-8-jwt-auth
.NET 8.0 - JWT Authentication API
# Last updated
- 11-01-2025
# Creates a global json
dotnet new globaljson --sdk-version 8.0.203 --force
# Functionality of the Web App
- JWT authentication
# Tech used for creating the Web App
- A .NET 8 Web API
- A Blazor Webassembly Web Client for the frontend
- A Vue 3 Client for the Frontend
- A traditional Webhotel for hosting
- VS Code# Development
dotnet run
# Production
Create a self contained build for production at the remote server / traditionel web hotel
dotnet publish webapi.csproj --configuration Release --runtime win-x86 --self-contained
Upload the build to remote server
At my remote servers the web.config needs to be without the folowing:
hostingModel="inprocess"