Servizio per il nuovo sito del PHC
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Antonio De Lucreziis d33a4f25ff fix: ora funge tutto anche in production 2 years ago
cmd feat: ora funge tutto benissimo per qualche motivo 2 years ago
frontend feat: ora funge tutto benissimo per qualche motivo 2 years ago
meta feat: ora funge tutto benissimo per qualche motivo 2 years ago
model initial commit 2 years ago
services fix: ora funge tutto anche in production 2 years ago
sl feat: ora funge tutto benissimo per qualche motivo 2 years ago
.gitignore initial commit 2 years ago
.npmrc feat: ora funge tutto benissimo per qualche motivo 2 years ago
Makefile feat: ora funge tutto benissimo per qualche motivo 2 years ago
README.md initial commit 2 years ago
go.mod initial commit 2 years ago
go.sum initial commit 2 years ago
package.json feat: ora funge tutto benissimo per qualche motivo 2 years ago
pnpm-lock.yaml feat: ora funge tutto benissimo per qualche motivo 2 years ago
server.js feat: ora funge tutto benissimo per qualche motivo 2 years ago
vite.config.js feat: ora funge tutto benissimo per qualche motivo 2 years ago

README.md

Website 2

Development

# First start in background the go backend on port :4000
$ go run -v ./cmd/server

# The start the frontend server on port :3000
$ pnpm run dev

Production

# scaffold the whole server without actually starting the server, this will generate a JSON file containing all routes mount-points for the ViteJS build
$ go run -v ./cmd/build

# build all frontend pages and assets
$ pnpm run build

# Now we have all the files and could also ship everything in a single binary
$ go build -o ./out/bin/server ./cmd/server