mirror of
https://github.com/skadimoolam/go-vue-todos.git
synced 2026-05-15 06:06:03 -06:00
Simple Todos using GoLang and Vue
|
|
||
|---|---|---|
| handlers | ||
| models | ||
| public | ||
| .gitignore | ||
| glide.lock | ||
| glide.yaml | ||
| LICENSE | ||
| readme.md | ||
| todo.go | ||
Simple Todos using GoLang and Vue
Prerequisites
Go get project
$ go get -u github.com/skadimoolam/go-vue-todos
$ cd $GOPATH/src/github.com/skadimoolam/go-vue-todos
Install dependencies
$ glide install
Start app
$ go run todo.go
Open app
Open localhost:8080 in your browser.
Manual setup without using Glide
go get github.com/skadimoolam/go-vue-todosgo get -u github.com/labstack/echo-- This installs ECHOgo get -u github.com/mattn/go-sqlite3-- This installs the sqlite packagecd $GOPATH/src/github.com/skadimoolam/go-vue-todosgo run todo.go-- assuming you have Go already installed and configured- Open
localhost:8080in your browser