Skip to content

Commit 1517dcb

Browse files
authored
Merge pull request #87 from nsip/release/v1.0.12
module support for nias2
2 parents 65c6a49 + 50fe1e2 commit 1517dcb

File tree

4 files changed

+400
-3
lines changed

4 files changed

+400
-3
lines changed

build_napval.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ curl https://raw.githubusercontent.com/nsip/registration-data-set/master/core.js
99
curl https://raw.githubusercontent.com/nsip/registration-data-set/master/core_parent2.json > app/napval/schemas/core_parent2.json
1010
echo "Downloading nats-streaming-server"
1111
#go get github.com/nats-io/nats-streaming-server
12-
go get github.com/nats-io/stan.go
12+
# go get github.com/nats-io/stan.go
1313

1414
do_build() {
1515
echo "Building NAPVAL..."
1616
mkdir -p $OUTPUT
1717
rm -rf $OUTPUT/*.csv
18-
#cd ../../nats-io/nats-streaming-server
19-
cd ../../nats-io/stan.go
18+
cd ../nats-streaming-server
19+
# cd ../../nats-io/stan.go
2020
GOOS="$GOOS" GOARCH="$GOARCH" go build -ldflags="$LDFLAGS" -o $OUTPUT/$GNATS -mod=mod
2121
cd $CWD
2222
cd ./app/napval

go.mod

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
module github.com/nsip/nias2
2+
3+
go 1.14
4+
5+
require (
6+
github.com/BurntSushi/toml v0.3.1
7+
github.com/PuerkitoBio/goquery v1.5.1
8+
github.com/balacode/one-file-pdf v0.0.0-20200620090739-0ad43253a916
9+
github.com/beevik/etree v1.1.0
10+
github.com/cenkalti/backoff v2.2.1+incompatible
11+
github.com/clipperhouse/jargon v1.0.7
12+
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
13+
github.com/fatih/color v1.9.0 // indirect
14+
github.com/gosexy/rest v0.0.0-20160109152940-b63cba93265b
15+
github.com/kylelemons/godebug v1.1.0
16+
github.com/labstack/echo v3.3.10+incompatible
17+
github.com/labstack/gommon v0.3.0 // indirect
18+
github.com/ledisdb/ledisdb v0.0.0-20200510135210-d35789ec47e6
19+
github.com/mattn/go-runewidth v0.0.9 // indirect
20+
github.com/microcosm-cc/bluemonday v1.0.4
21+
github.com/mitchellh/mapstructure v1.3.3
22+
github.com/myesui/uuid v1.0.0 // indirect
23+
github.com/nats-io/nats-streaming-server v0.18.0 // indirect
24+
github.com/nats-io/nats.go v1.10.0
25+
github.com/nats-io/nuid v1.0.1
26+
github.com/nats-io/stan.go v0.7.0
27+
github.com/orcaman/concurrent-map v0.0.0-20190826125027-8c72a8bb44f6
28+
github.com/pkg/errors v0.9.1
29+
github.com/playlyfe/go-graphql v0.0.0-20191219091308-23c3f22218ef
30+
github.com/shomali11/parallelizer v0.0.0-20190608135158-50acdcb89dff
31+
github.com/siddontang/goredis v0.0.0-20180423163523-0b4019cbd7b7
32+
github.com/smartystreets/goconvey v1.6.4 // indirect
33+
github.com/subchen/go-xmldom v1.1.2
34+
github.com/syndtr/goleveldb v0.0.0-20160425020131-cfa635847112
35+
github.com/tidwall/gjson v1.6.0
36+
github.com/tidwall/sjson v1.1.1
37+
github.com/twinj/uuid v1.0.0
38+
github.com/valyala/fasttemplate v1.2.1 // indirect
39+
github.com/wildducktheories/go-csv v0.0.0-20170625071029-a843eda7bf09
40+
github.com/xeipuuv/gojsonschema v1.2.0
41+
golang.org/x/net v0.0.0-20200822124328-c89045814202
42+
google.golang.org/protobuf v1.25.0 // indirect
43+
gopkg.in/cheggaaa/pb.v1 v1.0.28
44+
gopkg.in/fatih/set.v0 v0.2.1
45+
gopkg.in/stretchr/testify.v1 v1.2.2 // indirect
46+
)

0 commit comments

Comments
 (0)