-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to reflect changes to go-whosonfirst-spatial and go-whosonfirs…
…t-spatial-www (#13) * update to reflect changes to go-whosonfirst-spatial-www * add server Makefile target * update vendor deps --------- Co-authored-by: sfomuseumbot <sfomuseumbot@localhost>
- Loading branch information
1 parent
612f33a
commit d6aafe4
Showing
564 changed files
with
18,984 additions
and
24,821 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
*~ | ||
bin | ||
*.db | ||
!fixtures/*.db | ||
!fixtures/*.db | ||
go.work* | ||
work |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,21 @@ | ||
package main | ||
|
||
import ( | ||
_ "github.com/whosonfirst/go-whosonfirst-spatial-sqlite" | ||
) | ||
|
||
import ( | ||
"context" | ||
"log" | ||
|
||
"github.com/whosonfirst/go-whosonfirst-spatial/app/pip" | ||
_ "github.com/whosonfirst/go-whosonfirst-spatial-sqlite" | ||
"github.com/whosonfirst/go-whosonfirst-spatial/app/pip" | ||
) | ||
|
||
func main() { | ||
|
||
ctx := context.Background() | ||
|
||
logger := log.Default() | ||
|
||
err := pip.Run(ctx, logger) | ||
|
||
if err != nil { | ||
logger.Fatalf("Failed to run PIP application, %v", err) | ||
logger.Fatal(err) | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package main | ||
|
||
import ( | ||
"context" | ||
"log" | ||
|
||
_ "github.com/whosonfirst/go-whosonfirst-spatial-sqlite" | ||
"github.com/whosonfirst/go-whosonfirst-spatial/app/hierarchy/update" | ||
) | ||
|
||
func main() { | ||
|
||
ctx := context.Background() | ||
logger := log.Default() | ||
|
||
err := update.Run(ctx, logger) | ||
|
||
if err != nil { | ||
logger.Fatal(err) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.