Moved some files, implemented Dockerfile for tests, implemented makefile with install functionality

This commit is contained in:
2025-10-16 00:21:16 +02:00
parent 727254f43a
commit 470e8ad5a3
9 changed files with 301 additions and 83 deletions
+6
View File
@@ -68,5 +68,11 @@
"command": "GOOS=linux GOARCH=amd64 go build -o bin/myprogram.exe main.go",
"desc": "Cross-compile for Linux (alt. windows, darwin (arm64 / amd64))"
}
],
"git": [
{
"command": "git checkout -b branch_name",
"desc": "Create and checkout a new branch"
}
]
}
+18
View File
@@ -0,0 +1,18 @@
{
"language/system": [
{
"command": "the actual command",
"desc": "Describe the command here"
},
{
"command": "and add any amount of commands below",
"desc": "Describe them"
}
],
"different language/system": [
{
"command": "the command for a different language",
"desc": "Describe it"
}
]
}