Skip to content

Latest commit

 

History

History
20 lines (20 loc) · 392 Bytes

build_executable.md

File metadata and controls

20 lines (20 loc) · 392 Bytes

Build Executable File

  • Change directory to the directory of main.go and go.mod.
  • Build Executable Files
    • For server
      go build -i -v -o bin/server
    • For client
      go build -i -v -o bin/client
  • Run Executable Files
    • For server
      ./bin/server
    • For client
      ./bin/client