mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-14 07:26:47 +00:00
* Migrated to goose & sqlboiler * create tests with sqlboiler * code clean up * Added gct -> sqlboiler config gen * dropped pgx support * dropped pgx support because who needs connection pools * reenable sqlite audit tests * first pass of migration changes * stuff is broken :D * sqlboiler :D * end of date commit * Added comments code clean up * revert go module files back to upstream * bug fix * pushed go.mod update to use correc goose version * renamed sqlite to sqlite3 for consistency across codebase and PR feedback changes * makefile updates * things are broken end of day commit * added postgresql test * use correct database name * travis fixes for env vars * travis fixes for env vars * test fixes * run migration on test setup * test adding postgres support to appveyor * Skip tests on appveyor due to issues with missing binaries * oh yeah i have to support windows don't i * bumped goose version up * add postgres to osx * fix travis config as osx does not support services move spin up to before_script * added PGDATA path fix * pass PG_DATA to pg_ctl * added initdb to before install * fixes to wording and bumps up goose version * who needs ssl anyway * moved ssl to correct section :D * bumped goose version up * unbreak travis * unbreak travis * fix if database is disabled in config * move strings to consts * converted more strings to const * improvements to sqlboiler mmodel gen * Added contrib\sqlboiler file * sqlboiler windows contrib fixes * bumped goose version up * :D whoops * further fixes to sql models * further fixes to sql models * database type fix for config gen * README update * go.mod clean up * added config details for appveyor * appveyor ordering fix * force psql9.6 * appveyor config changes * all the environmen vars * model changes for psql * model changes for psql * sqlite model fixes * attempt at osx fix * added error check for migration * typos and check against goose error instead of string :D * updated sqlboiler commit id * bump sqlboiler version again * set decimal package to @0bb1631 * readme and makefile updates * bump goose version update readme and add override flag to config gen * README typo fix and lowered inserts in test down to 20 as we are only testing that inserts work running 200 was unnecessary * added gctcli command for audit event * Added debug output toggle to config added both postgres & sqlite support to gctcli command * Wording changes on errors * set sqlite to 1 connection to stop locke database issues * Usage update for order * README updates with config examples * go.mod/sum tidy * removed lines in import second * removed lines in imports * convert local time to utc for database and display output * go mod clean up and error checking to time * renamed all packages to sqlite3 * added windows command output for sql model gen * time conversion fix * time conversion on gctcli
30 lines
1.1 KiB
Modula-2
30 lines
1.1 KiB
Modula-2
module github.com/thrasher-corp/gocryptotrader
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/gofrs/uuid v3.2.0+incompatible
|
|
github.com/golang/protobuf v1.3.2
|
|
github.com/google/go-querystring v1.0.0
|
|
github.com/gorilla/mux v1.7.3
|
|
github.com/gorilla/websocket v1.4.0
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0
|
|
github.com/grpc-ecosystem/grpc-gateway v1.11.3
|
|
github.com/kat-co/vala v0.0.0-20170210184112-42e1d8b61f12
|
|
github.com/lib/pq v1.2.0
|
|
github.com/mattn/go-sqlite3 v1.11.0
|
|
github.com/pkg/errors v0.8.1
|
|
github.com/pquerna/otp v1.2.0
|
|
github.com/spf13/viper v1.4.0
|
|
github.com/thrasher-corp/goose v2.7.0-rc4.0.20191002032028-0f2c2a27abdb+incompatible
|
|
github.com/thrasher-corp/sqlboiler v1.0.1-0.20191001234224-71e17f37a85e
|
|
github.com/toorop/go-pusher v0.0.0-20180521062818-4521e2eb39fb
|
|
github.com/urfave/cli v1.20.0
|
|
golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5
|
|
golang.org/x/net v0.0.0-20190606173856-1492cefac77f // indirect
|
|
golang.org/x/sys v0.0.0-20191003212358-c178f38b412c // indirect
|
|
google.golang.org/genproto v0.0.0-20191002211648-c459b9ce5143
|
|
google.golang.org/grpc v1.21.1
|
|
gopkg.in/yaml.v2 v2.2.4 // indirect
|
|
)
|