The dashboard enhances visibility about dependencies in projects, helps to keep them up to date and consistent across repositories.  docker run -p 500

Dependencies Dashboard

submited by
Style Pass
2024-02-11 03:00:03

The dashboard enhances visibility about dependencies in projects, helps to keep them up to date and consistent across repositories.

docker run -p 5000:8080 -e GITHUB_API_BASE_URL=https://api.github.com -e GITHUB_ACCESS_TOKEN={access token} -e PROJECTS=dotnet/aspnetcore  --name dependencies-dashboard -d kbahdanovich/dependencies-dashboard:latest

name: dependencies-dashboard services:  dashboard:      image: kbahdanovich/dependencies-dashboard:latest ports:      - "5000:8080" environment:

       Project1;       Project2;       Project3;

GITHUB_API_BASE_URL - Required. The host URL to the GitHub server GITHUB_ACCESS_TOKEN - Required. The  user access token to access the server PROJECTS - Required. The list of projects, separated by ';' REFRESH_INTERVAL - Optional. The dashboard refresh interval in seconds. Default 60 seconds. LICENSE - Optional. The license information.

Works with both GitHub cloud and server One screen for all packages. References to repositories and files where the package is used. Flexible UI for different screen sizes Auto refresh Different tile color for Version analyses. Ability to navigate to the package from the dashboard Easy to setup Self hosted on your premises. Export to Pdf and Excel.

Leave a Comment