/image-host

Self hosted image uploader web app

Primary LanguagePython

Self hosted image upload web app

How to run

  • python -m venv venv
  • venv/bin/activate
  • pip install -U -r requirements.txt
  • touch config.py
  • vim config.py Add 2 lines of options like this
BASE_URL = ''
API_KEY = ''
PORT=80
  • python app.py db init
  • sudo FLASK_APP=app.py ./venv/bin/python -m flask run --host=0.0.0.0 --port=80