2.2 KiB
2.2 KiB
imgupload
What is imgupload?
imgupload is a Flask + uWSGI application to serve as an all-purpose image/file uploader over POST requests.
FAQ
Where can I send bug reports and feature requests?
You can create an issue here.
How do I use this program?
See Installation
I want to make a pull request. Where should I do that?
First, fork this repository. If you don't have an account on my Gitea site yet, you can either create one, or sign in using your GitHub account. Commit your changes to your fork, and then create a pull request.
Installation
- Clone the repository:
git clone https://gitea.bbaovanc.com/bbaovanc/imgupload.git
- Enter the imgupload directory:
cd imgupload
- Create a virtualenv:
python3 -m venv env
- Enter the virtualenv:
source env/bin/activate
- Install dependencies:
python3 -m pip install -r requirements.txt
- Run the Flask app
Running the Flask app
Using uWSGI
https://uwsgi-docs.readthedocs.io/en/latest/Configuration.html
Instructions specific to imgupload are coming soon
Using Flask development server
$ source env/bin/activate # if you haven't already entered the virtualenv
$ export FLASK_APP=imgupload.py
$ flask run
License
imgupload is licensed under the GPLv3 license. For more information, please refer to LICENSE