Compare commits

...

5 Commits

Author SHA1 Message Date
Jef Roosens 6fcb14623e
Merge branch 'main' into dev
ci/woodpecker/push/woodpecker Pipeline was successful Details
2022-01-08 21:49:30 +01:00
Jef Roosens 608e888fe7
Fixed routing issue
ci/woodpecker/push/woodpecker Pipeline was successful Details
2021-12-31 14:04:17 +01:00
Jef Roosens 80bd4cd1ff
Merge branch 'dev'
ci/woodpecker/push/woodpecker Pipeline was successful Details
2021-12-31 12:42:47 +01:00
Jef Roosens 057048cbec
Removed ci thingy
ci/woodpecker/push/woodpecker Pipeline was successful Details
2021-12-31 11:35:46 +01:00
Jef Roosens 32f164b6ff
Merge branch 'dev'
ci/woodpecker/push/woodpecker Pipeline was successful Details
2021-12-31 11:33:55 +01:00
3 changed files with 3 additions and 4 deletions

View File

@ -6,5 +6,4 @@ pipeline:
repo: chewingbever/pieter repo: chewingbever/pieter
tag: ${CI_COMMIT_TAG} tag: ${CI_COMMIT_TAG}
when: when:
branch: main
event: tag event: tag

4
app.py
View File

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

View File

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