A simple Flask application for hosting images
Clone the repo:
git clone https://github.com/katolik163/flaskimagehosting.git
cd flaskimagehosting
Create and activate virtual environment then install dependencies:
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
Edit .flaskenv
and config.py
Create database:
flask db upgrade
Run application:
flask run