Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 663 Bytes

README.md

File metadata and controls

19 lines (18 loc) · 663 Bytes

manga-reader

A very simple manga reader flask app.


Installation

  1. Install Python 3.10 with pip if you haven't already.
  2. Install Pipenv by running pip install --user pipenv if you haven't already
  3. Clone this repository into a new project directory
  4. Run pipenv install from the project directory
  5. To run the dev server use following:
    Windows (cmd / batch)
    set FLASK_APP=mangareader;set FLASK_ENV=development;pipenv run flask run
    Linux (sh / bash / zsh)
    export FLASK_APP=mangareader;export FLASK_ENV=development;pipenv run flask run
    Use Ctrl+C to stop the server.