This commit is contained in:
Zsolt Ero
2024-01-02 19:18:48 +01:00
parent d72038b9da
commit 9bb2c07818
7 changed files with 130 additions and 8 deletions

View File

@@ -107,10 +107,11 @@ def upload_https_host_files(c):
c.sudo(f'mkdir -p {HTTP_HOST_BIN}')
for file in [
'deploy_tiles_version.py',
'download_assets.py',
'download_tiles.py',
'mounter.py',
'metadata_to_tilejson.py',
'mounter.py',
]:
put(
c,
@@ -154,7 +155,17 @@ def upload_certificates(c):
def debug_tmp(c):
upload_https_host_files(c)
# upload_https_host_files(c)
for file in [
'deploy_tiles_version.py',
]:
put(
c,
SCRIPTS_DIR / 'http_host' / file,
HTTP_HOST_BIN,
permissions='755',
)
@click.command()