https://github.com/altinn/altinn-access-management
PoC for new auth admin UI
https://github.com/altinn/altinn-access-management
Last synced: 12 months ago
JSON representation
PoC for new auth admin UI
- Host: GitHub
- URL: https://github.com/altinn/altinn-access-management
- Owner: Altinn
- License: mit
- Created: 2022-04-28T08:47:40.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-07-06T18:54:45.000Z (12 months ago)
- Last Synced: 2025-07-06T19:44:23.540Z (12 months ago)
- Language: C#
- Size: 105 MB
- Stars: 6
- Watchers: 16
- Forks: 3
- Open Issues: 135
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# altinn-access-management
This component will handle backend functionality related to Access Management
- Administration of rights for apps, resources
- Administration of rights for api schemes
## Getting started
The fastest way to get development going is to open the main solution Altinn.AccessManagement.sln and selecting 'Altinn.AccessManagement' as the start up project from Visual Studio. Browser should open automatically to the swagger ui for the API.
Alternatively:
- Start the backend in `/src/Altinn.AccessManagement/Altinn.AccessManagement` with `dotnet run` or `dotnet watch`
## Project organisation
This is a typical backend API solution written in .NET C#.
- The main back end project is in `/src/Altinn.Authorizationadmin` and it has [its own README](backend/src/Altinn.Authorizationadmin/Altinn.Authorizationadmin/README.md)
- There is also a "bridge" between the back end and older APIs. For local development, this is implemented in `/development/src/LocalBridge`
## Setting up database
To run Access Management locally you need to have PostgreSQL database installed
- Download [PostgreSQL](https://www.postgresql.org/download/) (Currently using 14 in Azure, but 15 works locally)
- Install database server (choose your own admin password and save it some place you can find it again)
- Start PG admin
Create database authorizationdb
Create the following users (with priveliges for authorizationdb)
-platform_authorization_admin (superuser, canlogin)
-platform_authorization (canlogin)
password: Password
Create schema delegations in authorizationdb
Set platform_authorization_admin as owner