Compare commits

..

2 Commits

Author SHA1 Message Date
8837c4e12a add 'pyarrow' to requirements.txt 2026-01-29 11:41:12 +07:00
498234ddae add upload folder checker 2026-01-29 11:36:19 +07:00
2 changed files with 4 additions and 1 deletions

View File

@ -26,6 +26,8 @@ GEONETWORK_USER=os.getenv("GEONETWORK_USER")
GEONETWORK_PASS=os.getenv("GEONETWORK_PASS")
UPLOAD_FOLDER = Path(os.getenv("UPLOAD_FOLDER", "./uploads"))
os.makedirs(UPLOAD_FOLDER, exist_ok=True)
MAX_FILE_MB = int(os.getenv("MAX_FILE_MB", 30))
ALLOWED_ORIGINS = [

View File

@ -16,4 +16,5 @@ Shapely==2.1.2
SQLAlchemy==2.0.46
asyncpg
psycopg2
python-multipart
python-multipart
pyarrow