From 52fc0338888b2ec8226bc3b515d321509d574a82 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Thu, 31 Oct 2024 15:40:05 +0000 Subject: [PATCH] feat: infra setup --- README.md | 7 +++++++ requirements.txt | 1 + setup.py | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 97bb513..7de269a 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,10 @@ This application parses data in my [zettelkasten](https://github.com/thomasabish SQLite database that records key metadata about each entry (tags, backlinks, outlinks etc). It exposes a command line application for interfacing with the database. + +## Running app in local development + +``` +source venv/bin/activate +eolas-db +``` diff --git a/requirements.txt b/requirements.txt index e69de29..919d13a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -0,0 +1 @@ +python-frontmatter==1.1.0 diff --git a/setup.py b/setup.py index ec20e98..db995bf 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( ], entry_points={ "console_scripts": [ - "eolas-db=cli:main", + "run=app:main", ], }, )