Skip to content

Commit d43fc4f

Browse files
committed
Updated description and go packages
1 parent 0230651 commit d43fc4f

File tree

3 files changed

+106
-214
lines changed

3 files changed

+106
-214
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ Install the Golang and GO environment
5858
https://golang.org/doc/install
5959
```
6060

61+
Install [Postgresql](https://www.postgresql.org/download) (if you want to run locally)
62+
63+
```$xslt
64+
https://golang.org/doc/install
65+
```
66+
6167
Clone repository
6268

6369
```$xslt

go.mod

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,48 +4,50 @@ require (
44
github.com/99designs/gqlgen v0.12.2
55
github.com/agnivade/levenshtein v1.1.0 // indirect
66
github.com/casbin/casbin v1.9.1
7+
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect
78
github.com/dgrijalva/jwt-go v3.2.0+incompatible
89
github.com/go-chi/chi v4.0.2+incompatible
910
github.com/go-session/session v3.1.2+incompatible
1011
github.com/golang/protobuf v1.4.0
11-
github.com/google/wire v0.3.0
12+
github.com/google/wire v0.5.0
1213
github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4
14+
github.com/hashicorp/go-uuid v1.0.1 // indirect
1315
github.com/hashicorp/golang-lru v0.5.4 // indirect
1416
github.com/jinzhu/gorm v1.9.10
1517
github.com/kr/text v0.2.0 // indirect
16-
github.com/lib/pq v1.7.0
18+
github.com/lib/pq v1.10.0
1719
github.com/magiconair/properties v1.8.1 // indirect
1820
github.com/mitchellh/mapstructure v1.3.3
1921
github.com/nats-io/nats-streaming-server v0.18.0 // indirect
2022
github.com/nats-io/nats.go v1.10.0
2123
github.com/nats-io/stan.go v0.7.0
22-
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
2324
github.com/opentracing-contrib/go-stdlib v0.0.0-20190519235532-cf7a6c988dc9
2425
github.com/opentracing/opentracing-go v1.1.0
2526
github.com/pelletier/go-toml v1.4.0 // indirect
2627
github.com/pkg/errors v0.9.1
2728
github.com/processout/grpc-go-pool v1.2.1
28-
github.com/rubenv/sql-migrate v0.0.0-20200616145509-8d140a17f351
29+
github.com/rubenv/sql-migrate v0.0.0-20210408115534-a32ed26c37ea
2930
github.com/selvatico/go-mocket v1.0.7
31+
github.com/smartystreets/goconvey v1.6.4 // indirect
3032
github.com/spf13/afero v1.2.2 // indirect
3133
github.com/spf13/cast v1.3.0
32-
github.com/spf13/cobra v0.0.5
34+
github.com/spf13/cobra v0.0.6
3335
github.com/spf13/jwalterweatherman v1.1.0 // indirect
3436
github.com/spf13/viper v1.4.0
3537
github.com/stretchr/testify v1.6.1
3638
github.com/uber-go/atomic v1.4.0 // indirect
3739
github.com/uber/jaeger-client-go v2.17.0+incompatible
3840
github.com/uber/jaeger-lib v2.1.1+incompatible // indirect
3941
github.com/vektah/gqlparser/v2 v2.0.1
42+
github.com/ziutek/mymysql v1.5.4 // indirect
4043
go.uber.org/automaxprocs v1.2.0
4144
go.uber.org/zap v1.13.0
4245
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a
43-
golang.org/x/net v0.0.0-20200625001655-4c5254603344
44-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
46+
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4
47+
golang.org/x/sys v0.0.0-20210521203332-0cec03c779c1 // indirect
48+
golang.org/x/tools v0.1.1 // indirect
4549
google.golang.org/genproto v0.0.0-20190905072037-92dd089d5514 // indirect
4650
google.golang.org/grpc v1.26.0
47-
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
48-
gopkg.in/yaml.v2 v2.3.0 // indirect
4951
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
5052
)
5153

0 commit comments

Comments
 (0)