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.
- Host: GitHub
- URL: https://github.com/veracode/example-go-goget
- Owner: veracode
- Created: 2017-08-04T05:40:28.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-10-17T08:40:28.000Z (over 2 years ago)
- Last Synced: 2025-07-04T03:47:10.624Z (about 1 year ago)
- Language: Go
- Size: 564 KB
- Stars: 0
- Watchers: 17
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 .
```