commit 52021199a490b16cdadef6d524ad3371ae1141b5 Author: juancwu <46619361+juancwu@users.noreply.github.com> Date: Fri Oct 10 08:14:33 2025 -0400 init go project diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eb9172e --- /dev/null +++ b/.gitignore @@ -0,0 +1,64 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool +*.out + +# Go workspace file +go.work + +# Dependency directories +vendor/ +node_modules/ + +# Build output +build/ +bin/ +tmp/ +dist/ + +# IDE specific files +.idea/ +.vscode/ +*.swp +*.swo +*~ +.DS_Store + +# Environment variables +.env +.env.local +.env.*.local +.env.* +!.env.include.* + +# Logs +*.log +logs/ + +# Air temporary files +tmp/ + +# Generated files +*_templ.go +*_templ.txt + +# Database files +*.db +*.sqlite +*.sqlite3 + +# Config files with sensitive data (keep example files) +config.local.json +config.production.json + +# Asset manifest (generated) +build/manifest.json + diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..0cbd419 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.juancwu.dev/juancwu/budgething + +go 1.25.1 diff --git a/main.go b/main.go new file mode 100644 index 0000000..67d7299 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("BUDGETHING!!") +}