├── .gitignore ├── README.md ├── application.py ├── requirements.txt ├── static ├── guide-screenshots │ ├── account1.png │ └── cors1.png └── media │ └── default.png └── templates └── account.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.sw* 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwebberley/FlaskDirectUploader/HEAD/README.md -------------------------------------------------------------------------------- /application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwebberley/FlaskDirectUploader/HEAD/application.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwebberley/FlaskDirectUploader/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/guide-screenshots/account1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwebberley/FlaskDirectUploader/HEAD/static/guide-screenshots/account1.png -------------------------------------------------------------------------------- /static/guide-screenshots/cors1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwebberley/FlaskDirectUploader/HEAD/static/guide-screenshots/cors1.png -------------------------------------------------------------------------------- /static/media/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwebberley/FlaskDirectUploader/HEAD/static/media/default.png -------------------------------------------------------------------------------- /templates/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwebberley/FlaskDirectUploader/HEAD/templates/account.html --------------------------------------------------------------------------------