Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 511 Bytes

CONTRIBUTING.md

File metadata and controls

31 lines (21 loc) · 511 Bytes

Contributing

Development

Docker

 > docker build -t wanix:dev .
 > docker run -p 7777:7777 wanix:dev

Editors

VSCODE

  • Go for Visual Studio (Recommended)

  • Workspace Settings:

    • Since we are using syscall/js, we need to set the GOOS and GOARCH environment variables to js and wasm respectively.
    {
      "go.toolsEnvVars": {
        "GOOS": "js",
        "GOARCH": "wasm"
      }
    }