Skip to content

Commit 9e126bf

Browse files
committed
add debug messages in load joplin script
1 parent c3bc58c commit 9e126bf

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ services:
6969
command: >
7070
/bin/sh -c "
7171
./scripts/wait-for-it.sh -t 60 app:8082 &&
72+
python -m pip install pip -U &&
7273
python -m pip install requests &&
7374
python /app/scripts/ingest_joplin.py http://app:8082
7475
"

scripts/ingest_joplin.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,6 @@ def ingest_joplin_data(app_host: str = app_host, data_dir: Path = joplindata):
4646

4747

4848
if __name__ == "__main__":
49+
print("Loading Joplin Collection")
4950
ingest_joplin_data()
51+
print("All Done")

0 commit comments

Comments
 (0)