From 4a16895ba014473e00960e59383eba64cf598355 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Wed, 18 Nov 2015 21:00:34 -0500 Subject: Testing Heroku... --- Godeps/Godeps.json | 8 ++++++++ Godeps/_workspace/.gitignore | 2 ++ Procfile | 2 ++ main.go | 2 +- 4 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 Godeps/Godeps.json create mode 100644 Godeps/_workspace/.gitignore create mode 100644 Procfile diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json new file mode 100644 index 0000000..e5e5bcd --- /dev/null +++ b/Godeps/Godeps.json @@ -0,0 +1,8 @@ +{ + "ImportPath": "github.com/benburwell/zipserver", + "GoVersion": "go1.5.1", + "Packages": [ + "./..." + ], + "Deps": [] +} diff --git a/Godeps/_workspace/.gitignore b/Godeps/_workspace/.gitignore new file mode 100644 index 0000000..f037d68 --- /dev/null +++ b/Godeps/_workspace/.gitignore @@ -0,0 +1,2 @@ +/pkg +/bin diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..49204d1 --- /dev/null +++ b/Procfile @@ -0,0 +1,2 @@ +web: zipserver + diff --git a/main.go b/main.go index 1957af1..18342ed 100644 --- a/main.go +++ b/main.go @@ -18,7 +18,7 @@ func main() { func getInitializedDatabase() *ZipcodeDatabase { db := NewZipcodeDatabase() - err := db.LoadFromCSV("./zips.csv") + err := db.LoadFromCSV("zips.csv") if err != nil { fmt.Printf("%s\n", err) } -- cgit v1.2.3