From 52021199a490b16cdadef6d524ad3371ae1141b5 Mon Sep 17 00:00:00 2001 From: juancwu <46619361+juancwu@users.noreply.github.com> Date: Fri, 10 Oct 2025 08:14:33 -0400 Subject: [PATCH] init go project --- .gitignore | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ go.mod | 3 +++ main.go | 7 ++++++ 3 files changed, 74 insertions(+) create mode 100644 .gitignore create mode 100644 go.mod create mode 100644 main.go 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!!") +}