Metadata-Version: 2.3
Name: aeris
Version: 0.4.0
Summary: Jotting down notes.
Author: Lucas Maystre
Author-email: Lucas Maystre <lucas@maystre.ch>
Requires-Dist: arrow>=1.3.0
Requires-Dist: fastapi[standard]>=0.136.1
Requires-Dist: markdown2[all]>=2.5.5
Requires-Dist: psycopg[binary]>=3.3.3
Requires-Dist: pydantic>=2.13.3
Requires-Dist: pydantic-settings[yaml]>=2.14.0
Requires-Dist: sqlalchemy>=2.0.49
Requires-Dist: typer>=0.24.2
Requires-Python: >=3.13
Description-Content-Type: text/markdown

# aeris

A command-line tool for jotting down notes, backed by a PostgreSQL database.

## Installation

```bash
pip install aeris
```

## Configuration

Create `~/.aeris.yaml`:

```yaml
database_url: "postgresql+psycopg://user:password@localhost/aeris"
```

Then initialize the database:

```bash
aeris reset-db
```

## Usage

```bash
aeris add                        # open $EDITOR to write a note
aeris list                       # list recent notes
aeris list --last "2 hours"      # notes from the last 2 hours
aeris display [id]               # display note(s) in full
aeris delete <id>                # delete a note
```
