Tactical RMM Agent
Find a file
redanthrax 91c9de6e34 tests
2022-06-21 09:58:08 -07:00
.vscode testing for install - in progress 2022-06-15 16:37:35 -07:00
agent tests 2022-06-21 09:58:08 -07:00
build Release 2.0.4 2022-05-14 21:45:32 -07:00
shared updates for testing and windows 2022-06-15 20:04:57 -07:00
.gitignore add testargs to gitignore 2022-06-15 18:32:46 -07:00
go.mod big refactor and testing 2022-06-20 16:51:00 -07:00
go.sum big refactor and testing 2022-06-20 16:51:00 -07:00
LICENSE.md v2.0.0 2022-03-19 11:55:43 -07:00
main.go organizing and refactoring 2022-06-16 17:04:01 -07:00
README.md Merge remote-tracking branch 'origin/RefactorDebug' into BigRefactor 2022-06-17 10:21:46 -07:00
versioninfo.json Release 2.0.4 2022-05-14 21:45:32 -07:00

Tactical RMM Agent

https://github.com/amidaware/tacticalrmm

building the agent - linux

env CGO_ENABLED=0 GOOS=<GOOS> GOARCH=<GOARCH> go build -ldflags "-s -w"

building the agent - windows

$env:CGO_ENABLED="0";$env:GOOS="windows";$env:GOARCH="amd64"; go build -ldflags "-s -w"

tests

Navigate to repo directory

go test ./... -vet=off

Add to settings.json

"gopls": {
    "build.buildFlags": [
      "-tags=DEBUG"
    ]
  },
  "go.testFlags": [
    "-vet=off"
  ],
  "go.testTags": "TEST",