This commit is contained in:
Timofey.Kovalev 2020-01-15 10:55:22 +03:00
parent 9179f157d4
commit d0344aff9e
5 changed files with 10 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
files-server

View File

@ -0,0 +1,3 @@
# File server
Provides access to files and their list

View File

@ -1,6 +1,6 @@
{
"build": [
["go", "build", "-o", "files-server"]
["make"]
],
"services": [
{

View File

@ -63,7 +63,7 @@
{{end}}
<div class="alert alert-primary" role="alert">
<small>By dedal.qq (c) 2018</small>
<small>By dedal.qq (c) 2020</small>
</div>
</div>
</body>

4
makefile Normal file
View File

@ -0,0 +1,4 @@
all: build
build:
go build -o files-server