An open API service indexing awesome lists of open source software.

https://github.com/veracode/example-go-goget

An example Go project that does not use any package manager to demonstrate SourceClear scans.
https://github.com/veracode/example-go-goget

Last synced: 6 months ago
JSON representation

An example Go project that does not use any package manager to demonstrate SourceClear scans.

Awesome Lists containing this project

README

          

# [:] Example Go project.

An example Go project that does not use any package manager to demonstrate [SourceClear](https://www.sourceclear.com) scans.

## Install and activate SourceClear
Follow the instructions under the section "Setup and Configuration" in https://www.sourceclear.com/docs/command-line-interface/ to install and activate our SourceClear agent.

## Scan this project
There are 2 ways to scan this project.

### 1. Using url option
`SRCCLR_FORCE_GO_INSTALL=true srcclr scan --url https://github.com/srcclr/example-go-goget`

### 2. On local path
```
1. git clone https://github.com/srcclr/example-go-goget/ $GOPATH/src/github.com/srcclr/example-go-goget/
2. cd $GOPATH/src/github.com/srcclr/example-go-goget/ && go get -d ./...
2. srcclr scan .
```