fix (build): enable sqlite fts extension

This commit is contained in:
=
2019-04-17 00:55:30 +10:00
parent e38fa58764
commit 2e6f0931aa
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -14,7 +14,7 @@
# Features
- Manage your files from a browser
- Org mode friendly ([documentation](https://github.com/mickael-kerjean/filestash/wiki/Release-0.1:-Org-Mode-everywhere))
- Full org mode client ([documentation](https://github.com/mickael-kerjean/filestash/wiki/Release-0.1:-Org-Mode-everywhere))
- Photo management
- Flexible Share mechanism
- User friendly
@@ -25,6 +25,7 @@
- Multiple cloud providers and protocols, easily extensible
- Full Text Search
- Shared links as WebDAV server
- Nyan cat loader
- Audio player
- Video player
- Image viewer
+1 -1
View File
@@ -43,7 +43,7 @@ RUN mkdir -p $GOPATH/src/github.com/mickael-kerjean/ && \
#################
# Compile Backend
cd $GOPATH/src/github.com/mickael-kerjean/filestash/server && go get && cd ../ && \
go build -ldflags "-X github.com/mickael-kerjean/filestash/server/common.BUILD_NUMBER=`date -u +%Y%m%d`" -o ./dist/filestash ./server/main.go && \
go build --tags "fts5" -ldflags "-X github.com/mickael-kerjean/filestash/server/common.BUILD_NUMBER=`date -u +%Y%m%d`" -o ./dist/filestash ./server/main.go && \
#################
# Compile Plugins
mkdir -p ./dist/data/plugin && \