Much improve README, mostly with installation instructions

This commit is contained in:
mlncn 2021-05-02 18:40:03 -04:00
parent 1f451309a7
commit c236099528

View file

@ -6,11 +6,26 @@ Initially for [Pomodoro Prompt](https://gitlab.com/agaric/python/pomodoroprompt)
Pmodoro Prompt is extremely simplistic, and only has a description field and automatically saves the date. The time unit for each entry is half an hour. Pmodoro Prompt is extremely simplistic, and only has a description field and automatically saves the date. The time unit for each entry is half an hour.
## Installation
```
mkdir -p ~/Projects/agaric/python
git clone git@gitlab.com:agaric/python/pomodoroprompt.git
cd pomodoroprompt
python -m pip install --user -r requirements.txt
```
## Usage
```bash
python3 pomodoro_to_harvest.py
```
## Background notes
To import into a timetracking system of any sophistication, we need to parse our description and To import into a timetracking system of any sophistication, we need to parse our description and
Harvest allows CSV import, with the fields: Harvest allows CSV import, with a bunch of annoying fields.
date,project,description
If project doesn't exist it will create a new project. If project doesn't exist it will create a new project.