step-security-bot / console

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Codecov OSSF-Scorecard Score Discord

Console

Disclaimer: Production viable releases are tagged and listed under 'Releases'. Console is under development. The current available tags for download are Alpha version code and should not be used in production. For these Alpha tags, certain features may not function yet, visual look and feel may change, or bugs/errors may occur. Follow along our Feature Backlog for future releases and feature updates.

Overview

Console is an application that provides a 1:1, direct connection for AMT devices for use in an enterprise environment. Users can add activated AMT devices to access device information and device management functionality such as power control, remote keyboard-video-mouse (KVM) control, and more.


Quick start

For Users

  1. Find the latest release of Console under Github Releases.

  2. Download the appropriate binary assets for your OS and Architecture under the Assets dropdown section.

  3. Run Console.

For Developers

Local development (in Linux or WSL):

To start the service with Postgres:

# Postgres
$ make compose-up
# Run app with migrations
$ make run

Download and check out the sample-web-ui:

git clone https://github.com/open-amt-cloud-toolkit/sample-web-ui

Ensure that the environment file has cloud set to false and that the URLs for RPS and MPS are pointing to where you have Console running. The default is http://localhost:8181. Follow the instructions for launching and running the UI in the sample-web-ui readme.

Dev tips for passing CI Checks

  • Install gofumpt go install mvdan.cc/gofumpt@latest (replaces gofmt)
  • Install gci go install github.com/daixiang0/gci@latest (organizes imports)
  • Ensure code is formatted correctly with gofumpt -l -w -extra ./
  • Ensure code is gci'd with gci.exe write --skip-generated -s standard -s default .
  • Ensure all unit tests pass with go test ./...
  • Ensure code has been linted with docker run --rm -v ${pwd}:/app -w /app golangci/golangci-lint:latest golangci-lint run -v

Additional Resources

  • Find a bug? Or have ideas for new features? Open a new Issue.

  • Need additional support or want to get the latest news and events about Open AMT? Connect with the team directly through Discord.

    Discord Banner 1

About

License:Apache License 2.0


Languages

Language:Go 98.4%Language:Makefile 1.0%Language:Shell 0.3%Language:Dockerfile 0.3%