file config

This commit is contained in:
CHIEFSOFT\ameye
2025-12-28 15:19:36 -05:00
parent 33c38652d5
commit 21f55b2e5c
2 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ class FileUploadService(BaseService):
# This is to avert duplicate file name issues
save_filename = str(timestamp_integer) + "-" + filename
final_save_path = os.path.join(save_path, save_filename)
logger.info(f'POST CALLED 6 {final_save_path}')
file.save(final_save_path)
+1 -3
View File
@@ -94,11 +94,9 @@ class Config:
"salarypaymenT_6"
]
STRIPE_PRIV_KEY = os.getenv("STRIPE_PRIV_KEY", "WRONG_KEY_SUPPLIED")
UPLOAD_FOLDER=os.environ.get("RAC_RESULT_accountStatus", "/app/uploads/DEV")
UPLOAD_FOLDER=os.environ.get("UPLOAD_FOLDER", "/app/uploads/DEV")
settings = Config()