Skip to content

Commit 48be3de

Browse files
committed
updated Readme
1 parent 1137bf6 commit 48be3de

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,13 @@ For this purpose, the Tuttle project is split across several repositories:
3838

3939
## Prototype Test
4040

41+
### Demo Notebooks
42+
4143
A demo of the core functionality is available as a series of Jupyter notebooks at [`notebooks/walkthrough/`](https://github.com/tuttle-dev/tuttle/tree/main/notebooks/walkthrough). If you have basic Python programming skills you will be able to test this. We appreciate your feedback.
4244

45+
### Demo App
46+
47+
A desktop app is under development. Currently, the app includes some demo functionality.
4348

4449
## Setup
4550

@@ -59,6 +64,21 @@ $ python setup.py develop
5964
$ pytest
6065
```
6166

67+
5. Start the demo app with
68+
69+
```shell
70+
$ python app/Tuttle.py
71+
```
72+
73+
and/or
74+
75+
6. Open and run the demo notebooks with Jupyter Lab.
76+
77+
```shell
78+
$ jupyter lab
79+
```
80+
81+
6282

6383
## Contributing
6484

tuttle/controller.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,3 +266,4 @@ def billing(
266266
document_format="pdf",
267267
out_dir=out_dir,
268268
)
269+
logger.info(f"✅ created invoice for {project.title}")

tuttle/timetracking.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ def generate_timesheet(
5252
raise ValueError(f"unknown source: {source}")
5353
tag_query = f"tag == '{project.tag}'"
5454
if period_end:
55-
print(f"timetracking_data.index: {timetracking_data.index}")
5655
ts_table = (
5756
timetracking_data.loc[period_start:period_end].query(tag_query).sort_index()
5857
)

0 commit comments

Comments
 (0)