Fix issue where godo would not build project
* The solution is to add a main.go and call run * parses the current file contents
This commit is contained in:
parent
24a8fcbadb
commit
9ef1fda667
@ -5,13 +5,7 @@ import (
|
|||||||
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/8thlight/vulcanizedb/blockchain_listener"
|
|
||||||
"github.com/8thlight/vulcanizedb/config"
|
"github.com/8thlight/vulcanizedb/config"
|
||||||
"github.com/8thlight/vulcanizedb/core"
|
|
||||||
"github.com/8thlight/vulcanizedb/geth"
|
|
||||||
"github.com/8thlight/vulcanizedb/observers"
|
|
||||||
"github.com/8thlight/vulcanizedb/repositories"
|
|
||||||
"github.com/jmoiron/sqlx"
|
|
||||||
do "gopkg.in/godo.v2"
|
do "gopkg.in/godo.v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -23,30 +17,12 @@ func parseEnvironment(context *do.Context) string {
|
|||||||
return environment
|
return environment
|
||||||
}
|
}
|
||||||
|
|
||||||
func startBlockchainListener(cfg config.Config) {
|
|
||||||
fmt.Println("Client Path ", cfg.Client.IPCPath)
|
|
||||||
blockchain := geth.NewGethBlockchain(cfg.Client.IPCPath)
|
|
||||||
loggingObserver := observers.BlockchainLoggingObserver{}
|
|
||||||
connectString := config.DbConnectionString(cfg.Database)
|
|
||||||
db, err := sqlx.Connect("postgres", connectString)
|
|
||||||
if err != nil {
|
|
||||||
log.Fatalf("Error connecting to DB: %v\n", err)
|
|
||||||
}
|
|
||||||
repository := repositories.NewPostgres(db)
|
|
||||||
dbObserver := observers.NewBlockchainDbObserver(repository)
|
|
||||||
listener := blockchain_listener.NewBlockchainListener(blockchain, []core.BlockchainObserver{
|
|
||||||
loggingObserver,
|
|
||||||
dbObserver,
|
|
||||||
})
|
|
||||||
listener.Start()
|
|
||||||
}
|
|
||||||
|
|
||||||
func tasks(p *do.Project) {
|
func tasks(p *do.Project) {
|
||||||
|
|
||||||
p.Task("run", nil, func(context *do.Context) {
|
p.Task("run", nil, func(context *do.Context) {
|
||||||
environment := parseEnvironment(context)
|
environment := parseEnvironment(context)
|
||||||
cfg := config.NewConfig(environment)
|
context.Start(`go run main.go --environment={{.environment}}`,
|
||||||
startBlockchainListener(cfg)
|
do.M{"environment": environment, "$in": "cmd/run"})
|
||||||
})
|
})
|
||||||
|
|
||||||
p.Task("migrate", nil, func(context *do.Context) {
|
p.Task("migrate", nil, func(context *do.Context) {
|
||||||
|
38
cmd/run/main.go
Normal file
38
cmd/run/main.go
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
|
|
||||||
|
"flag"
|
||||||
|
|
||||||
|
"github.com/8thlight/vulcanizedb/blockchain_listener"
|
||||||
|
"github.com/8thlight/vulcanizedb/config"
|
||||||
|
"github.com/8thlight/vulcanizedb/core"
|
||||||
|
"github.com/8thlight/vulcanizedb/geth"
|
||||||
|
"github.com/8thlight/vulcanizedb/observers"
|
||||||
|
"github.com/8thlight/vulcanizedb/repositories"
|
||||||
|
"github.com/jmoiron/sqlx"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
environment := flag.String("environment", "", "Environment name")
|
||||||
|
flag.Parse()
|
||||||
|
cfg := config.NewConfig(*environment)
|
||||||
|
|
||||||
|
fmt.Println("Client Path ", cfg.Client.IPCPath)
|
||||||
|
blockchain := geth.NewGethBlockchain(cfg.Client.IPCPath)
|
||||||
|
loggingObserver := observers.BlockchainLoggingObserver{}
|
||||||
|
connectString := config.DbConnectionString(cfg.Database)
|
||||||
|
db, err := sqlx.Connect("postgres", connectString)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("Error connecting to DB: %v\n", err)
|
||||||
|
}
|
||||||
|
repository := repositories.NewPostgres(db)
|
||||||
|
dbObserver := observers.NewBlockchainDbObserver(repository)
|
||||||
|
listener := blockchain_listener.NewBlockchainListener(blockchain, []core.BlockchainObserver{
|
||||||
|
loggingObserver,
|
||||||
|
dbObserver,
|
||||||
|
})
|
||||||
|
listener.Start()
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user