From 7d1890156d98187f26a379c8be37553908491092 Mon Sep 17 00:00:00 2001 From: lukasmartinelli Date: Thu, 3 Nov 2016 13:18:08 +0100 Subject: [PATCH] Update Travis go get --- .travis.yml | 7 +++++-- README.md | 13 +++++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 756ad27b..dabb9935 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,8 @@ language: go install: - - go get +- go get github.com/gorilla/handlers +- go get github.com/gorilla/mux +- go get github.com/gorilla/websocket +- go get github.com/urfave/cli test: - - make +- make diff --git a/README.md b/README.md index 2cce64ec..1c1a996d 100644 --- a/README.md +++ b/README.md @@ -31,13 +31,22 @@ maputnik --watch --file basic-v9.json ### Build -Clone the repository recursively since the Maputnik editor is embedded -as submodule. +Clone the repository **recursively** since the Maputnik editor is embedded +as submodule. Make sure you clone it into the correct directory `$GOPATH/src/github.com/maputnik`. ``` git clone --recursive git@github.com:maputnik/desktop.git ``` +Install the 3rd party dependencies. + +``` +go get github.com/gorilla/handlers +go get github.com/gorilla/mux +go get github.com/gorilla/websocket +go get github.com/urfave/cli +``` + Run `make` to build the app distribution bundle and create the `maputnik` binary embedding the editor.