Merge branch 'master' into master

This commit is contained in:
Adi 2017-10-30 15:08:27 +05:30 committed by GitHub
commit 1a80eb0bac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -5,8 +5,8 @@ import (
"net/http"
"strconv"
"../models"
"github.com/labstack/echo"
"github.com/skadimoolam/go-vue-todos/models"
)
type H map[string]interface{}

View file

@ -1,9 +1,9 @@
# Simple Todos using GoLang and Vue
## Installation
- `git clone https://github.com/skadimoolam/go-vue-todos`
- `cd go-vue-todos`
- `go get -u github.com/skadimoolam/go-vue-todos`
- `go get -u github.com/labstack/echo` -- This installs ECHO
- `go get -u github.com/mattn/go-sqlite3` -- This installs the sqlite package
- `cd $GOPATH/src/github.com/skadimoolam/go-vue-todos`
- `go run todo.go` -- assuming you have Go already installed and configured
- Open **localhost:8080** in your browser

View file

@ -3,9 +3,9 @@ package main
import (
"database/sql"
"./handlers"
"github.com/labstack/echo"
_ "github.com/mattn/go-sqlite3"
"github.com/skadimoolam/go-vue-todos/handlers"
)
func main() {