Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 720 Bytes

Readme.md

File metadata and controls

22 lines (18 loc) · 720 Bytes
  1. Install and configure go https://go.dev/ Download and install go

    'go version' to verify go download (will need to restart terminal to get changes)
    
    'go' shows commands
    'go help <topic>' for more info
    
  2. Setup Project

    1. Install & setup VSCode
    2. Get Go extension
    3. 'Ctrl-shift-P' then 'Go: Install/Update Tools' Module is go project workspace
    4. Create folder for your project
    5. Run 'Go mod init github.com/pluralsight/webservice'
    6. Location tells go where to find dependencies
    7. Create file 'main.go'
    8. Run from:
      1. go run main.go
      2. go run github.com/pluralsight/webservice

(Excecution without navigating around hard drive)