Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 939 Bytes

README.md

File metadata and controls

41 lines (32 loc) · 939 Bytes

TODO app

Open in Gitpod

This is a simple TODO app made using Flask.

Packages used:

Setup and run

Make sure you have python installed

Terminal - bash (commands differ for cmd)

  1. Set up virtualenv
    $ virtualenv venv
  2. Activate venv
    $ source venv/scripts/activate
  3. Install required modules
    $ pip install -r requirements.txt
  4. Run the app!
    $ python run.py
  5. [optional] Run tests
    $ python tests.py