Fixed routing issue
ci/woodpecker/push/woodpecker Pipeline was successful Details

main 0.1.2
Jef Roosens 2021-12-31 14:04:17 +01:00
parent 80bd4cd1ff
commit 608e888fe7
Signed by: Jef Roosens
GPG Key ID: 955C0660072F691F
2 changed files with 3 additions and 3 deletions

4
app.py
View File

@ -4,7 +4,7 @@ from pathlib import Path
from werkzeug.utils import secure_filename
import subprocess
UPLOAD_FOLDER = Path(os.environ['REPO_DIR']) / "pkgs"
UPLOAD_FOLDER = Path(os.environ['REPO_DIR'])
API_KEY = os.environ['API_KEY']
ALLOWED_EXTENSIONS = {'pkg.tar.zst', 'pkg.tar.gz'}
@ -57,7 +57,7 @@ def upload_file():
file.save(path)
# Run repo-add on the file
res = subprocess.run(["repo-add", path.parent.parent / "pieter.db.tar.gz", path])
res = subprocess.run(["repo-add", path.parent / "pieter.db.tar.gz", path])
if res.returncode != 0:
path.unlink()

View File

@ -36,7 +36,7 @@ http {
}
location / {
root /data;
root /data;
}
}
}