Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 342 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 342 Bytes

todoist-location-labels

Todoist service for adding location reminder for specific label

First setup

The database tables need to be created so run a python shell:

python

and run the following commands:

from app import db
db.create_all()
exit()

This creates the DB and makes it that you are ready for development(or production)