Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 753 Bytes

README.md

File metadata and controls

55 lines (35 loc) · 753 Bytes

Wine Manager

Author: lapostoj

Contact: jerome.lapostolet@gmail.com

Description

Online application to manage the reserve of a wine cellar. Built for a personal use so some aspects might be specific. The project is made with an upload on Google appengine in mind.

Technology

  • Go 1.19 (with modules)

Development

Build the app

docker build -t winemanager .

Serve the app

docker run -p 8080:8080 --env FRONTEND_FOLDER="/frontend/" winemanager

Manage dependencies

See upgrades to be done

go list -u -m all

Update all direct and indirect dependencies

go get -u ./...

Prune dependencies from go.mod

go mod tidy

Run the tests

go test ./...