Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grisu48/quickshare
Prototyping a small file serve utility
https://github.com/grisu48/quickshare
fileshare go
Last synced: 10 days ago
JSON representation
Prototyping a small file serve utility
- Host: GitHub
- URL: https://github.com/grisu48/quickshare
- Owner: grisu48
- License: gpl-3.0
- Created: 2019-09-13T14:32:50.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-08T11:20:13.000Z (over 4 years ago)
- Last Synced: 2024-06-19T05:24:05.408Z (7 months ago)
- Topics: fileshare, go
- Language: Go
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# quickshare
[![Build Status](https://travis-ci.org/grisu48/quickshare.svg?branch=master)](https://travis-ci.org/grisu48/quickshare)
quickshare is the prototype of a simple file share utility.
It is a small webserver, where users can add files with a single call. Subsequent files are added to the running webserver, thus making it fast and simple to quickly share even larger files on the local network
## Build and run
Requirements: `go > 1.9`
$ make
$ sudo make install## Usage
To share the file `README.md`
$ quickshare README.md
Serving: README.md (/home/phoenix/Projects/quickshare/README.md)
2019/09/13 16:37:40 Started http://hostname:8249Adding more files by simply running `quickshare` again in another window
$ quickshare LICENSE
`quickshare` runs by default on port `8249`. The local address is displayed when running the server program
$ quickshare README.md
Serving: README.md (/home/phoenix/Projects/quickshare/README.md)
2019/09/13 16:37:40 Started http://hostname:8249# Notice
This is an early prototype. Please handle with care!