Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 484 Bytes

README.md

File metadata and controls

25 lines (13 loc) · 484 Bytes

practise-flask

A simple 'todo list' project used to manage the todo items which also provides the Restful APIs to the outside.

Quick start

  • Intall Python 3.x

  • Create the virtual Env

    python3 -m venv your-venv-name

  • Enter venv

    source $your-venv-name/bin/activate

  • Intall the dependencies

    pip install -r ./requirements.txt

  • Run from command line

    python3 ./manage.py runserver --host 0.0.0.0

    or import current project into PyCharm to run it