- Add support for additional Kubernetes resource types in default configuration
- fixing golangci-lint
- Updating Meshery Adapter for Kuma to Go version to 1.23
- fix: update DefaultGenerationURL to correct path for CRDs
- Refine summary messages for Kuma service mesh operations
- Remove redundant commit author from model generator workflow
- Updating Meshery Adapter for Kuma to Go version to 1.23
- Refine summary messages for Kuma service mesh operations
- refactor(mesheryctl): rename pattern commands to design due to deprecation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"errors" | |
"fmt" | |
"log" | |
"net/smtp" | |
) | |
func SendMail(to string) error { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PATH="$PATH" | |
alias python="winpty python.exe" | |
alias cv="python3 -m venv venv && source venv/Scripts/activate" | |
alias av="source venv/Scripts/activate" | |
alias gi="touch .gitignore && echo 'venv/' >> .gitignore && echo '.vscode/' >> .gitignore" | |
alias nrd="npm run dev" | |
alias nrb="npm run build" | |
function add_commit_push() { | |
git add . |