diff options
author | Jan Dittberner <jandd@cacert.org> | 2018-03-29 20:08:41 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2018-03-29 20:08:41 +0200 |
commit | 4dd5e0982050ae92a9a37cb62e606b2807a85c27 (patch) | |
tree | d2b9900068afe3d747524b43fbae49b86feaa7c8 /boardvoting/main.go | |
parent | aea93c328e76fba300f5dd2c380b46c62a6db904 (diff) | |
download | cacert-boardvoting-4dd5e0982050ae92a9a37cb62e606b2807a85c27.tar.gz cacert-boardvoting-4dd5e0982050ae92a9a37cb62e606b2807a85c27.tar.xz cacert-boardvoting-4dd5e0982050ae92a9a37cb62e606b2807a85c27.zip |
Embed database migrations
- switch from goose to github.com/rubenv/sql-migrate
- move assets (static, templates, migrations) to boardvoting package
- add generated boardvoting/assets.go
- remove unused static files from static directory
- add package db with db migration configuration
Diffstat (limited to 'boardvoting/main.go')
-rw-r--r-- | boardvoting/main.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/boardvoting/main.go b/boardvoting/main.go new file mode 100644 index 0000000..5c8e6eb --- /dev/null +++ b/boardvoting/main.go @@ -0,0 +1,3 @@ +package boardvoting + +//go:generate go-bindata -pkg $GOPACKAGE -o assets.go ./migrations/... ./static/... ./templates/... |