Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 956 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 956 Bytes

Mola Mola

Dev Setup

Server (Do this FIRST!)

  • Install golang
    • Do appropriate GOPATH setup
    • Test with: echo $GOPATH
  • If you DID NOT yet clone the repo:
    • go get github.com/sunmoyed/molamola
  • If you DID already clone the repo:
    • mkdir -p $GOPATH/src/github.com/sunmoyed
    • mv /path/to/molamola $GOPATH/src/github.com/sunmoyed/molamola
  • make server-dev
  • Golang dependency management is done with dep

Client

  • Install npm and node
  • Go into the web directory: cd web
  • Install dependencies of this project: npm i
  • Return to the project root: cd ..
  • Run development build: make web-dev