Upload files to a server on your local network for faster and simpler file transfers across a network
Go to file
2017-10-25 13:04:51 +01:00
css Improve styling of uploadsuccess.html 2017-10-25 12:51:18 +01:00
fonts Working. 2017-10-24 21:34:55 +01:00
templates Add QR code generator, remove unneccesary javascript from upload_success.html 2017-10-25 12:50:03 +01:00
.gitignore update .gitignore 2017-10-25 12:53:22 +01:00
README.md Update README 2017-10-25 13:04:51 +01:00
uploadr.py Add QR code generator, remove unneccesary javascript from upload_success.html 2017-10-25 12:50:03 +01:00

uploadr

Upload files to a server on your local network for faster and simpler file transfers across a network.

config

The config file for uploadr is very simple. It should be in a class called uploadr in a file called config.py. It should be valid python and the two options needed are domain and port which are both used for the creation of QR code links. The file can also be used as the config file for gunicorn. Here is an example below:

class uploadr:
	domain = "example.com"
	port = 8005

# gunicorn
bind = "0.0.0.0:" + uploadr.port

You also need to create the directories qrcodes and uploads (in your working directory).

dependencies

uploadr uses the following modules:

  • flask
  • qrcode
  • werkzeug