Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
github.com/residenti/trading_bitcoin_api
プロジェクトのルート直下で docker-compose up -d
を実行すると、下記の2つのコンテナが立ち上がります。
サーバーを起動する。
% docker exec -it golang bash
# go build -o main
# ./main
go build
を実行すると go.sum
, go.mod
に記録されているパッケージが自動でインストールされます。
Go Moudules の module-aware mode でパッケージを管理しています。
module-aware mode を有効にするために GO111MODULE=on
としています。
(プロジェクト配下に go.sum
, go.mod
が配置されているため GO111MODULE=auto
にしても module-aware mode となるが分かりやすいので明示的に on
を指定している)
注意点として、ツール系のパッケージは tools/tool.go
にて blank import してください。
実行ファイルは GOBIN="/go/src/trading_bitcoin_api/bin"
に配置されます。
詳細はこちらを参考にしてください。
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.