
Security News
CISA Kills Off RSS Feeds for KEVs and Cyber Alerts
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
github.com/wyllisMonteiro/mvc_go
It's a student project for building an application that allows user to create articles. I used strategy design pattern with Golang and MVC architecture.
/warticle/.env
USERDB
like this USERDB=root
PASSDB
like this PASSDB=root
NAMEDB
like this NAMEDB=wiki
docker-compose.yml
MYSQL_ROOT_PASSWORD, MYSQL_DATABASE, MYSQL_USER, MYSQL_PASSWORD
At the begining there is no articles because db is empty
Use docker-compose up --build -d
If you need to update Golang code you can execute docker-compose up --build -d app
Application at http://localhost:9000
Godoc at http://localhost:6060
$ sudo nano $HOME/.config/Code/User/settings.json
{
"go.lintTool":"golangci-lint",
"go.lintFlags": [
"--fast"
],
.golangci.yml
file, there are all the necessary toolsExample :
For example, you want to create unit tests to a file called auth.go Create a new file called auth_test.go at the same location than auth.go In that file, add all functions needed to make tests with Test in prefix function name like TestLogin(), TestLogout(). For more details about writting tests check this link : https://medium.com/better-programming/easy-guide-to-unit-testing-in-golang-4fc1e9d96679
$ go test ./...
$ golangci-lint run
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
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.