Skip to content

Commit

Permalink
Merge pull request #18 from TomFanella4/development
Browse files Browse the repository at this point in the history
Sprint 1
  • Loading branch information
TomFanella4 authored Mar 3, 2018
2 parents faed915 + 202f9a8 commit 933bab1
Show file tree
Hide file tree
Showing 57 changed files with 8,509 additions and 0 deletions.
9 changes: 9 additions & 0 deletions backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
backend
.main.go.swp
.vscode/
.vscode/
backend.exe
debug
vendor/
.env
firebase-config.json
214 changes: 214 additions & 0 deletions backend/Gopkg.lock

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

37 changes: 37 additions & 0 deletions backend/Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# 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/gorilla/mux"
version = "1.6.1"

[metadata.heroku]
root-package = "github.com/meetover"

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

0 comments on commit 933bab1

Please sign in to comment.