bump release

This commit is contained in:
Pierre Dubouilh
2019-03-31 17:18:30 +02:00
parent 48f1751cee
commit 93f3717835
4 changed files with 8 additions and 4 deletions
+4 -1
View File
@@ -1,8 +1,11 @@
run: build:
make embed make embed
go vet && go fmt go vet && go fmt
CGO_ENABLED=0 go build gossa.go CGO_ENABLED=0 go build gossa.go
rm gossa.go rm gossa.go
run:
make build
./gossa fixture ./gossa fixture
watch: watch:
+1 -1
View File
@@ -6,7 +6,7 @@ RUN curl -L -o caddy.tar.gz "https://github.com/mholt/caddy/releases/download/v0
RUN tar xvzf caddy.tar.gz && mv caddy /caddy RUN tar xvzf caddy.tar.gz && mv caddy /caddy
# download and prepare gossa # download and prepare gossa
RUN curl -L -o /gossa "https://github.com/pldubouilh/gossa/releases/download/v0.0.6/gossa-linux64" RUN curl -L -o /gossa "https://github.com/pldubouilh/gossa/releases/download/v0.0.7/gossa-linux64"
RUN chmod +x /gossa /caddy RUN chmod +x /gossa /caddy
# Caddy config: # Caddy config:
+1 -1
View File
@@ -1,5 +1,5 @@
FROM alpine FROM alpine
EXPOSE 8001 EXPOSE 8001
RUN wget https://github.com/pldubouilh/gossa/releases/download/v0.0.6/gossa-linux64 && mv gossa-linux64 /gossa && chmod +x /gossa RUN wget https://github.com/pldubouilh/gossa/releases/download/v0.0.7/gossa-linux64 && mv gossa-linux64 /gossa && chmod +x /gossa
ENTRYPOINT [ "/gossa", "-h", "0.0.0.0", "/shared" ] ENTRYPOINT [ "/gossa", "-h", "0.0.0.0", "/shared" ]
+2 -1
View File
@@ -22,7 +22,7 @@ built blobs are available on the [release page](https://github.com/pldubouilh/go
### run ### run
```sh ```sh
# build # build (or download release from github)
make make
# run # run
@@ -46,6 +46,7 @@ make
|Ctrl/Meta + C | copy URL to clipboard| |Ctrl/Meta + C | copy URL to clipboard|
|Ctrl/Meta + E | rename file/folder| |Ctrl/Meta + E | rename file/folder|
|Ctrl/Meta + Del | delete file/folder| |Ctrl/Meta + Del | delete file/folder|
|Ctrl/Meta + U | upload new file/folder|
|Ctrl/Meta + D | create a new directory| |Ctrl/Meta + D | create a new directory|
|Ctrl/Meta + X | cut selected path| |Ctrl/Meta + X | cut selected path|
|Ctrl/Meta + V | paste previously selected paths to directory| |Ctrl/Meta + V | paste previously selected paths to directory|