This commit is contained in:
Zsolt Ero
2024-01-10 21:14:23 +01:00
parent 1b7dde229a
commit 8f6e45dc61
4 changed files with 39 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ from pathlib import Path
import click
import requests
from http_host_lib import DEFAULT_ASSETS_DIR, DEFAULT_RUNS_DIR, MNT_DIR
from http_host_lib.download_assets import download_fonts, download_natural_earth
from http_host_lib.download_assets import download_fonts, download_natural_earth, download_sprites
from http_host_lib.download_tileset import download_and_extract_tileset
from http_host_lib.mount import clean_up_mounts, create_fstab
from http_host_lib.nginx import write_nginx_config
@@ -95,6 +95,7 @@ def download_assets(assets_dir: Path):
download_fonts(assets_dir)
download_natural_earth(assets_dir)
download_sprites(assets_dir)
@cli.command()