Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/persteenolsen/dotnet-8-jwt-auth-api
A .NET 8 Web API using JWT for Authentiction
https://github.com/persteenolsen/dotnet-8-jwt-auth-api
dotnet jwt-token
Last synced: 29 days ago
JSON representation
A .NET 8 Web 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 (9 months ago)
- Default Branch: main
- Last Pushed: 2024-08-19T11:12:18.000Z (5 months ago)
- Last Synced: 2024-11-07T09:46:20.227Z (3 months ago)
- Topics: dotnet, jwt-token
- Language: C#
- Homepage: https://dotnet.jwt.auth.api.persteenolsen.com/users
- Size: 7.81 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
- 19-08-2024
# 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"