This commit is contained in:
Zsolt Ero
2024-09-12 12:17:14 +02:00
parent 93f89e51e7
commit e015515245
2 changed files with 4 additions and 4 deletions

View File

@@ -100,7 +100,7 @@ def sync(force):
On a new server this also takes care of everything, no need to run anything manually. On a new server this also takes care of everything, no need to run anything manually.
""" """
print(f'---\n{now}\nrunning full_sync') print(f'---\n{now}\nstarting full_sync')
full_sync(force) full_sync(force)

View File

@@ -26,7 +26,7 @@ def make_tiles(area, upload):
Generate tiles for a given area, optionally upload it to the btrfs bucket Generate tiles for a given area, optionally upload it to the btrfs bucket
""" """
print(f'{now} starting make-tiles {area} upload: {upload}') print(f'---\n{now}\nstarting make-tiles {area} upload: {upload}')
run_folder = run_planetiler(area) run_folder = run_planetiler(area)
make_btrfs(run_folder) make_btrfs(run_folder)
@@ -42,7 +42,7 @@ def upload_area_(area):
Upload all runs from a given area to the btrfs bucket Upload all runs from a given area to the btrfs bucket
""" """
print(f'{now} starting upload-area {area}') print(f'---\n{now}\nstarting upload-area {area}')
upload_area(area) upload_area(area)
@@ -53,7 +53,7 @@ def make_indexes():
Make indexes for all buckets Make indexes for all buckets
""" """
print(f'{now} starting make-indexes') print(f'---\n{now}\nstarting make-indexes')
for bucket in ['ofm-btrfs', 'ofm-assets']: for bucket in ['ofm-btrfs', 'ofm-assets']:
make_indexes_for_bucket(bucket) make_indexes_for_bucket(bucket)