Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
1d3d62d
migrations
distrill Apr 14, 2018
d167fdd
seeds
distrill Apr 13, 2018
4364839
broken as
distrill Apr 14, 2018
069c012
idevenknow
distrill Apr 14, 2018
75a6fe1
read models from db
distrill Apr 14, 2018
3cd459c
crud all things
distrill Apr 14, 2018
2eafb01
model structs
distrill Apr 14, 2018
4edc335
model struct
distrill Apr 15, 2018
2c4d467
GET api, update models to work with user ids
distrill Apr 15, 2018
b39c85d
get user
distrill Apr 15, 2018
efa37a5
remaining api function signatures
distrill Apr 15, 2018
8ae0c15
remaining api handlers, error handle refactor
distrill Apr 21, 2018
3b130a6
start unit tests
distrill Apr 21, 2018
1c5f2c7
move tests to test dir, notest for TODO
distrill Apr 21, 2018
4b750a7
add update_interval, accumulator_value is now accumulator_increment
distrill Apr 22, 2018
2f6558e
smaller key size (mariadb character default too big?), second goal-02…
distrill Apr 29, 2018
25de361
update put routes, not create. some debug log
distrill Apr 29, 2018
666737d
more notes
distrill Apr 30, 2018
9b2a4eb
notes
distrill Apr 30, 2018
fc5138d
merge goal click work
distrill Apr 30, 2018
669bbbf
interval and accumulator info on goal
distrill May 1, 2018
5fe8e70
add user id to create goal
distrill May 4, 2018
acf13e4
store color on goal
distrill May 6, 2018
9084cb1
resty update/delete endpoints
distrill May 7, 2018
2cb56f8
hello world with facebook and echo
distrill May 8, 2018
9744789
logins and return model
distrill May 9, 2018
843b2d7
notes
distrill May 9, 2018
46e7090
notes
distrill May 9, 2018
502b9f3
fix weird model names
distrill May 10, 2018
cd50866
build_handlers.go -> main.go
distrill May 10, 2018
55c9c9f
slap user into db after login
distrill May 10, 2018
5eb2edd
session
distrill May 10, 2018
192ed9a
reinstate api routes as protected, logout
distrill May 10, 2018
721c986
/api/me... endpoints
distrill May 10, 2018
dfbe19e
clean up for deploy
distrill May 11, 2018
e2892eb
clean up for deploy
distrill May 12, 2018
c25839e
gitignore
distrill May 12, 2018
c66699f
dep
distrill May 12, 2018
fae4782
no facebook login without https
distrill May 12, 2018
03e297e
rm tmp.go
distrill May 12, 2018
90107ad
auth for static too
distrill May 12, 2018
2fa220b
no cache
distrill May 12, 2018
a56913b
login redirect
distrill May 12, 2018
0816d37
exe and nohup gitignore
distrill May 12, 2018
e899879
deploy
distrill May 12, 2018
70b7da2
deploy changes
distrill May 12, 2018
7436d99
checkauth redirect or error based on route
distrill May 13, 2018
d982b45
login styles
distrill May 13, 2018
e6f0bad
favicon.ico
distrill May 13, 2018
cb341e6
facebook :bdb:
distrill May 13, 2018
abde12b
style buttons little bit
distrill May 13, 2018
395b302
logo_side.png
distrill May 13, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
public
vendor
streaking
nohup.out
log
pid
tmp
165 changes: 165 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

54 changes: 54 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true


[[constraint]]
name = "github.com/go-sql-driver/mysql"
version = "1.3.0"

[[constraint]]
name = "github.com/gorilla/sessions"
version = "1.1.0"

[[constraint]]
branch = "master"
name = "github.com/jmoiron/sqlx"

[[constraint]]
name = "github.com/labstack/echo"
version = "3.3.5"

[[constraint]]
name = "github.com/labstack/echo-contrib"
version = "0.5.2"

[[constraint]]
branch = "master"
name = "golang.org/x/oauth2"

[prune]
go-tests = true
unused-packages = true
Loading