Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Open up the repo in vscode, and you will be prompted to open up the devcontainer.
    1. Click yes, give it a few minutes to setup, it will run docker-compose.yml which will setup the mongodb locally
  2. Now that your development environment is setup, open up a terminal in vscode. Which should open you in the container, at folder '/workspace'
  3. Do a 'make build'

    At the moment there is errors
    1. I solved the vcs status error by
      1. do a git status
      2. follow the command it outputs
      3. Got rid of the error:
    2. I solved the malformed import path "-o": leading dash by
      1. Edit line 8 in makefile 
        Original: go build ./... -o cbs
        New: go build -o cbs ./...
    3. Then it should be able to run
  4. Example

...

  1. Image Added

Deployment Database

TBD