diff --git a/main.py b/main.py new file mode 100644 index 0000000..a634f07 --- /dev/null +++ b/main.py @@ -0,0 +1,16 @@ +import os, logging +DEBUG = os.environ.get('DEBUG') +logging.basicConfig( + format='[%(asctime)s] %(levelname)s %(module)s/%(funcName)s - %(message)s', + level=logging.DEBUG if DEBUG else logging.INFO) + +NOTES_DIR = '/home/tanner/notes-git/notes' + +def collect_daily_notes(): + pass + +def main(): + collect_daily_notes() + +if __name__ == '__main__': + main()