Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 447 Bytes

dev.md

File metadata and controls

25 lines (16 loc) · 447 Bytes

Development

Setting Up Development Environment

docker compose up -d

Then attach to the gowebdav-dev container using VSCode and start development in the /workspace directory.

Common Development Operations

go run . # Run
go run . --port 8080 # Run and specify port

go build . # Build binary
go test ./... # Test

docker build -t 117503445/go_webdav . # Build Docker image

Front End Build

See ./script/ui