Skip to content

Instantly share code, notes, and snippets.

View ecukalla's full-sized avatar

Edmond Cukalla ecukalla

View GitHub Profile
@akottr
akottr / Maven.sublime-build
Last active August 1, 2022 06:47
For maven build put this file into ~/.config/sublime-text-3/Packages/User. Choose Tools -> Build System -> Maven. Ctrl+Shift+ P shows the entries (e.g mvn clean)
{
"working_dir": "$file_path",
"shell_cmd":"mvn clean install",
"variants": [
{
"name": "mvn clean install",
"shell_cmd": "mvn clean install"
},
{
"name": "mvn full build",
@ecukalla
ecukalla / main.tf
Last active April 21, 2024 13:27
terraform github
terraform {
required_providers {
github = {
source = "integrations/github"
version = "~> 6.2.1"
}
}
}
# Configure the GitHub Provider