Skip to content
Snippets Groups Projects
Commit 56acbb69 authored by Nicolas PERNOUD's avatar Nicolas PERNOUD
Browse files

feat: added windows setup

parent 626b997f
No related branches found
No related tags found
No related merge requests found
module forge.grandlyon.com/NPERNOUD/mdl-qor-sdk module forge.grandlyon.com/NPERNOUD/mdl-qor-sdk
go 1.12 go 1.13
require ( require (
cloud.google.com/go v0.44.3 // indirect github.com/alexedwards/scs/v2 v2.3.0
github.com/alexedwards/scs/v2 v2.2.0
github.com/andybalholm/cascadia v1.0.0 // indirect
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect
github.com/aws/aws-sdk-go v1.23.8 // indirect github.com/golang/protobuf v1.3.2 // indirect
github.com/denisenkom/go-mssqldb v0.0.0-20190820223206-44cdfe8d8ba9 // indirect
github.com/disintegration/imaging v1.6.1 // indirect
github.com/fatih/color v1.7.0 // indirect
github.com/google/go-cmp v0.3.1 // indirect
github.com/gorilla/sessions v1.2.0 // indirect github.com/gorilla/sessions v1.2.0 // indirect
github.com/gosimple/slug v1.8.0 // indirect github.com/gosimple/slug v1.9.0 // indirect
github.com/jinzhu/configor v1.1.1 // indirect
github.com/jinzhu/gorm v1.9.11 github.com/jinzhu/gorm v1.9.11
github.com/lib/pq v1.2.0 // indirect github.com/jinzhu/now v1.1.1 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect github.com/mattn/go-sqlite3 v1.12.0 // indirect
github.com/mattn/go-isatty v0.0.9 // indirect
github.com/microcosm-cc/bluemonday v1.0.2 // indirect github.com/microcosm-cc/bluemonday v1.0.2 // indirect
github.com/nicolaspernoud/ninicobox-v3-server v0.0.0-20191007180054-6e4b7ea3d7b3 github.com/nicolaspernoud/ninicobox-v3-server v0.0.0-20191105110203-b02c9afcfcc1
github.com/qor/admin v0.0.0-20190906081516-5593fc33b920 github.com/qor/admin v0.0.0-20191021122103-f3db8244d2d2
github.com/qor/assetfs v0.0.0-20170713023933-ff57fdc13a14 // indirect github.com/qor/assetfs v0.0.0-20170713023933-ff57fdc13a14 // indirect
github.com/qor/cache v0.0.0-20171031031927-c9d48d1f13ba // indirect github.com/qor/cache v0.0.0-20171031031927-c9d48d1f13ba // indirect
github.com/qor/i18n v0.0.0-20181014061908-f7206d223bcd github.com/qor/i18n v0.0.0-20181014061908-f7206d223bcd
github.com/qor/media v0.0.0-20190826035146-91d0b6c53dd6 // indirect
github.com/qor/middlewares v0.0.0-20170822143614-781378b69454 // indirect github.com/qor/middlewares v0.0.0-20170822143614-781378b69454 // indirect
github.com/qor/oss v0.0.0-20190603071501-90a5bbaee07c // indirect github.com/qor/qor v0.0.0-20191022064424-b3deff729f68
github.com/qor/qor v0.0.0-20190319081902-186b0237364b
github.com/qor/responder v0.0.0-20171031032654-b6def473574f // indirect github.com/qor/responder v0.0.0-20171031032654-b6def473574f // indirect
github.com/qor/roles v0.0.0-20171127035124-d6375609fe3e github.com/qor/roles v0.0.0-20171127035124-d6375609fe3e
github.com/qor/serializable_meta v0.0.0-20180510060738-5fd8542db417 // indirect
github.com/qor/session v0.0.0-20170907035918-8206b0adab70 // indirect github.com/qor/session v0.0.0-20170907035918-8206b0adab70 // indirect
github.com/qor/validations v0.0.0-20171228122639-f364bca61b46 // indirect github.com/qor/validations v0.0.0-20171228122639-f364bca61b46 // indirect
github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be // indirect
github.com/theplant/cldr v0.0.0-20190423050709-9f76f7ce4ee8 // indirect github.com/theplant/cldr v0.0.0-20190423050709-9f76f7ce4ee8 // indirect
github.com/theplant/htmltestingutils v0.0.0-20190423050759-0e06de7b6967 // indirect golang.org/x/net v0.0.0-20191126235420-ef20fe5d7933 // indirect
github.com/theplant/testingutils v0.0.0-20190603093022-26d8b4d95c61 // indirect golang.org/x/oauth2 v0.0.0-20191122200657-5d9234df094c
github.com/yosssi/gohtml v0.0.0-20190128141317-9b7db94d32d9 // indirect
golang.org/x/image v0.0.0-20190823064033-3a9bac650e44 // indirect
golang.org/x/net v0.0.0-20191014212845-da9a3fd4c582 // indirect
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
google.golang.org/appengine v1.6.5 // indirect google.golang.org/appengine v1.6.5 // indirect
) )
This diff is collapsed.
ECHO "GOPATH is %GOPATH%"
:: Install dependencies
go get -u
go mod tidy
:: Get last version of templates
SET WD=%CD%
CD %GOPATH%
go get github.com/qor/admin
go get github.com/qor/i18n
CD %WD%
:: Copy templates
RMDIR /S /Q %WD%\vendor\github.com\qor\
MKDIR %WD%\vendor\github.com\qor\admin\
ROBOCOPY %GOPATH%\src\github.com\qor\admin\views\ %WD%\vendor\github.com\qor\admin\ /E
ROBOCOPY %GOPATH%\src\github.com\qor\i18n\views\ %WD%\vendor\github.com\qor\i18n\ /E
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment