After this commit, dev auth would start working with the `REMARK_URL` hostname instead of the previously hardcoded 127.0.0.1. Breaks development setup where `REMARK_URL` was set to a non-standard value and dev auth was running on 127.0.0.1 and working, as, after that change, it would stop working.
80 lines
3.2 KiB
AMPL
80 lines
3.2 KiB
AMPL
module github.com/umputun/remark42/backend
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/Depado/bfchroma/v2 v2.0.0
|
|
github.com/PuerkitoBio/goquery v1.8.0
|
|
github.com/alecthomas/chroma/v2 v2.2.0
|
|
github.com/didip/tollbooth/v7 v7.0.0
|
|
github.com/didip/tollbooth_chi v0.0.0-20220719025231-d662a7f6928f
|
|
github.com/go-chi/chi/v5 v5.0.7
|
|
github.com/go-chi/cors v1.2.1
|
|
github.com/go-chi/render v1.0.2
|
|
github.com/go-pkgz/auth v1.19.1
|
|
github.com/go-pkgz/jrpc v0.3.0
|
|
github.com/go-pkgz/lcw v1.0.1
|
|
github.com/go-pkgz/lgr v0.10.4
|
|
github.com/go-pkgz/notify v0.1.1
|
|
github.com/go-pkgz/repeater v1.1.3
|
|
github.com/go-pkgz/rest v1.15.6
|
|
github.com/go-pkgz/syncs v1.2.0
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
|
github.com/google/uuid v1.3.0
|
|
github.com/gorilla/feeds v1.1.1
|
|
github.com/hashicorp/go-multierror v1.1.1
|
|
github.com/jessevdk/go-flags v1.5.0
|
|
github.com/kyokomi/emoji/v2 v2.2.10
|
|
github.com/microcosm-cc/bluemonday v1.0.19
|
|
github.com/rs/xid v1.4.0
|
|
github.com/russross/blackfriday/v2 v2.1.0
|
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
|
|
github.com/stretchr/testify v1.8.0
|
|
go.etcd.io/bbolt v1.3.6
|
|
go.uber.org/goleak v1.1.12
|
|
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d
|
|
golang.org/x/image v0.0.0-20220617043117-41969df76e82
|
|
golang.org/x/net v0.0.0-20220708220712-1185a9018129
|
|
)
|
|
|
|
require (
|
|
cloud.google.com/go/compute v1.6.1 // indirect
|
|
github.com/ajg/form v1.5.1 // indirect
|
|
github.com/andybalholm/cascadia v1.3.1 // indirect
|
|
github.com/aymerick/douceur v0.2.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dghubble/oauth1 v0.7.1 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/dlclark/regexp2 v1.4.0 // indirect
|
|
github.com/go-oauth2/oauth2/v4 v4.4.3 // indirect
|
|
github.com/go-pkgz/email v0.3.0 // indirect
|
|
github.com/go-pkgz/expirable-cache v0.1.0 // indirect
|
|
github.com/go-redis/redis/v8 v8.11.5 // indirect
|
|
github.com/go-stack/stack v1.8.1 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/gorilla/css v1.0.0 // indirect
|
|
github.com/gorilla/websocket v1.5.0 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/golang-lru v0.5.4 // indirect
|
|
github.com/klauspost/compress v1.15.2 // indirect
|
|
github.com/nullrocks/identicon v0.0.0-20180626043057-7875f45b0022 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/slack-go/slack v0.10.3 // indirect
|
|
github.com/stretchr/objx v0.4.0 // indirect
|
|
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
|
|
github.com/xdg-go/scram v1.1.1 // indirect
|
|
github.com/xdg-go/stringprep v1.0.3 // indirect
|
|
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
|
|
go.mongodb.org/mongo-driver v1.9.1 // indirect
|
|
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
|
|
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|