-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from myrunes/dev
add asset crawler
- Loading branch information
Showing
26 changed files
with
694 additions
and
122 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
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 |
---|---|---|
|
@@ -43,4 +43,6 @@ yarn-error.log* | |
*.sln | ||
*.sw? | ||
|
||
__debug_bin | ||
__debug_bin | ||
|
||
fsdata/ |
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,4 @@ | ||
FROM golang:1.13-alpine as build | ||
FROM golang:1.14-alpine as build | ||
ARG RELEASE=TRUE | ||
WORKDIR /var/myrunes | ||
ADD . . | ||
|
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
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,24 +1,25 @@ | ||
module github.com/myrunes/backend | ||
|
||
go 1.13 | ||
go 1.14 | ||
|
||
require ( | ||
github.com/alexedwards/argon2id v0.0.0-20200420065805-90c52fcb498a | ||
github.com/bwmarrin/snowflake v0.3.0 | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible | ||
github.com/ghodss/yaml v1.0.0 | ||
github.com/go-ini/ini v1.60.2 // indirect | ||
github.com/go-ozzo/ozzo-routing v2.1.4+incompatible // indirect | ||
github.com/go-redis/redis v6.15.7+incompatible | ||
github.com/golang/gddo v0.0.0-20200324184333-3c2cc9a6329d // indirect | ||
github.com/onsi/ginkgo v1.12.0 // indirect | ||
github.com/onsi/gomega v1.9.0 // indirect | ||
github.com/go-redis/redis v6.15.9+incompatible | ||
github.com/minio/minio-go v6.0.14+incompatible | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7 | ||
github.com/qiangxue/fasthttp-routing v0.0.0-20160225050629-6ccdc2a18d87 | ||
github.com/valyala/fasthttp v1.12.0 | ||
github.com/valyala/fasthttp v1.15.1 | ||
github.com/zekroTJA/ratelimit v0.0.0-20190321090824-219ca33049a5 | ||
github.com/zekroTJA/timedmap v0.0.0-20200421070859-4302645f33f5 | ||
go.mongodb.org/mongo-driver v1.3.2 | ||
golang.org/x/crypto v0.0.0-20200420201142-3c4aac89819a | ||
github.com/zekroTJA/shinpuru v0.0.0-20200829092918-bf62c98441a9 | ||
github.com/zekroTJA/timedmap v1.2.0 | ||
go.mongodb.org/mongo-driver v1.3.3 | ||
golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de | ||
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect | ||
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df | ||
) |
Oops, something went wrong.