TheIdServer

(โ˜… 757)

OpenID/Connect, OAuth2, WS-Federation and SAML 2.0 server based on Duende IdentityServer and ITFoxtec Identity SAML 2.0 with its admin UI

  • .commitlintrc.json
  • .dockerignore
  • .editorconfig
  • .gitignore
  • .releaserc.json
  • Aguafrommars-square.png
  • appveyor.yml
  • appveyorinit.ps1
  • big-logo.png
  • build.cmd
  • build.ps1
  • bump-ms-dependencies.ps1
  • bump-system-dependencies.ps1
  • CHANGELOG.md
  • clean.ps1
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • coverletArgs.runsettings
  • dev-env.list
  • dotnet-install.ps1
  • dotnet-install.sh
  • env.list
  • GitVersion.yml
  • Install-MongoDb.ps1
  • LICENSE
  • logo.png
  • mangoversion.js
  • nuget.config
  • oidc-cert.der
  • package-icon.png
  • publish.cmd
  • publish.ps1
  • README.md
  • render.yaml
  • resources-keys.txt
  • SECURITY.md
  • TheIdServer.sln
  • TheIdServer.sln.licenseheader
  • THIRD-PARTY-NOTICES
  • update-dependencies.cmd
  • update-dependencies.ps1

๐Ÿš€ Installation Guide

1. Get the code
git clone https://github.com/Aguafrommars/TheIdServer

Downloads the entire project code from GitHub to your computer.

cd TheIdServer

Moves into the project folder you just downloaded.

2. Docker

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t aguacongas/theidserver.duende:dev -f "./src/Aguacongas.TheIdServer.Duende/Dockerfile" .

Builds a runnable image based on the Dockerfile.

docker build -t aguacongas/theidserverapp:dev -f "./src/Aguacongas.TheIdServer.BlazorApp/Dockerfile" .

Builds a runnable image based on the Dockerfile.

โœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

Pulled directly from this repo's README.

3. .NET

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • .NET SDK The SDK required for the dotnet command.
dotnet restore

Downloads the packages the project depends on.

dotnet run

Builds the project and runs it immediately.

โœ… After dotnet run, check the message or address shown in the terminal.

4. Node.js

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Node.js Node.js must be installed to use npm. The LTS version is recommended.
cd src/BlazorApp/Aguacongas.TheIdServer.BlazorApp.Infrastructure/wwwroot

This project's files live in a subfolder, so move into it first.

npm install

Downloads and installs the libraries listed in package.json.

npm start

Starts the development/run server.

โœ… After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
// repository documentation