feat: infra setup

This commit is contained in:
thomasabishop 2024-10-31 15:40:05 +00:00
parent b11f5850fc
commit 52fc033888
3 changed files with 9 additions and 1 deletions

View file

@ -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
```

View file

@ -0,0 +1 @@
python-frontmatter==1.1.0

View file

@ -10,7 +10,7 @@ setup(
],
entry_points={
"console_scripts": [
"eolas-db=cli:main",
"run=app:main",
],
},
)