first commit

This commit is contained in:
fabio
2026-02-18 21:10:23 +01:00
commit dec68aff39
91 changed files with 823 additions and 0 deletions

11
info.md Normal file
View File

@@ -0,0 +1,11 @@
# 1) build frontend
cd app
pnpm run build
# 2) copia la SPA nella cartella server/static
cd ..
rm -rf server/static/* && cp -R app/dist/spa/. server/static/
# 3) cross-compile per Windows (amd64)
cd server
GOOS=windows GOARCH=amd64 go build -o server_windows.exe main.go